Ruby/Reflection/FILE
Материал из Wiki.crossplatform.ru
(Различия между версиями)
ViGOur (Обсуждение | вклад) м (1 версия: Импорт выборки материалов по Ruby) |
Текущая версия на 17:57, 13 сентября 2010
The keyword __FILE__ stands for the name of the file containing the code.
puts __FILE__ class MyClass @@note = "A" def sing_hello @@note.succ!.succ! print "Hello... ", @@note, " " end end myObject = [MyClass.new, MyClass.new, MyClass.new] myObject.each { |stooge| stooge.sing_hello }