Ruby/Method/send

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

Перейти к: навигация, поиск

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/, ".")