gpt4 book ai didi

ruby - Ruby 中的函数指针?

转载 作者:数据小太阳 更新时间:2023-10-29 06:48:11 27 4
gpt4 key购买 nike

也许这是一个愚蠢的问题,但我是 ruby 的新手,我用谷歌搜索了一下,发现了这些:

proc=Proc.new {|x| deal_with(x)}
a_lambda = lambda {|a| puts a}

但我想要这个:

def forward_slash_to_back(string)
...
def back_slash_to_forward(string)
...
def add_back_slash_for_post(string)
...
...
case conversion_type
when /bf/i then proc=&back_slash_to_forward
when /fb/i then proc=&forward_slash_to_back
when /ad/i then proc=&add_back_slash_for_post
else proc=&add_back_slash_for_post
end

n_data=proc.call(c_data)

但是它给了我一个错误。我不知道如何在 Ruby 中做到这一点,任何人都可以帮忙吗?非常感谢!

最佳答案

“函数指针”在 Ruby 中很少使用。在这种情况下,您通常会使用 Symbol#send 代替:

method = case conversion_type
when /bf/i then :back_slash_to_forward
when /fb/i then :forward_slash_to_back
when /ad/i then :add_back_slash_for_post
else :add_back_slash_for_post
end

n_data = send(method, c_data)

如果你真的需要一个可调用对象(例如,如果你想在特定情况下使用内联 lambda/proc),你可以使用 #method:

m = case conversion_type
when /bf/i then method(:back_slash_to_forward)
when /fb/i then method(:forward_slash_to_back)
when /ad/i then ->(data){ do_something_with(data) }
else Proc.new{ "Unknown conversion #{conversion_type}" }
end

n_data = m.call(c_data)

关于ruby - Ruby 中的函数指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8095841/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com