Ruby/Method/send
Материал из Wiki.crossplatform.ru
(Различия между версиями)
ViGOur (Обсуждение | вклад) м (1 версия: Импорт выборки материалов по Ruby) |
Текущая версия на 17:55, 13 сентября 2010
Built-In Reflection
my_string = "times" 3.send(my_string) { print "Hello "}
Calling Methods Dynamically
"this is a test".send(:length) # 13 "this is a sub".send("sub", /iles/, ".")