温馨提示×

怎么在Ruby中引用函数

小亿
85
2024-03-20 16:18:22
栏目: 编程语言

在Ruby中引用函数有两种常见的方式:

1、使用方法名作为变量来引用函数。例如:

```ruby

def say_hello

puts "Hello!"

end

my_function = method(:say_hello)

my_function.call

```

2、使用符号来引用函数。例如:

```ruby

def say_hello

puts "Hello!"

end

my_function = :say_hello.to_proc

my_function.call

```

这两种方式都可以让你引用一个函数并调用它。

0