Ruby/File Directory/IO.fileno

Материал из Wiki.crossplatform.ru

(Различия между версиями)
Перейти к: навигация, поиск
м (1 версия: Импорт выборки материалов по Ruby)
 

Текущая версия на 17:57, 13 сентября 2010

test what the numeric file descriptor is for your I/O stream (to_i also works).

ios = IO.new( 1, "w" )
ios.puts "IO, IO, it"s off to the computer lab I go."
ios.fileno # => 1
ios.to_i # => 1
$stdout.fileno # => 1