-3

Is it possible to pass parameter to a method like this:

variable = my_method(:parameter)

No quotes, no nothing.Just -> :parameter .

4

1 回答 1

3

是的,您可以将符号传递给方法。例子:

puts('hello') 

或者

puts(:hello)
于 2013-11-02T20:08:10.830 回答