Ruby – 调用方法传递数组的值作为每个参数

前端之家收集整理的这篇文章主要介绍了Ruby – 调用方法传递数组的值作为每个参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前坚持这个问题.我已经在我做过的类中加入了method_missing函数.当调用不存在的函数时,我想调用另一个我知道的函数存在,将args数组作为所有参数传递给第二个函数.有没有人知道这样做的方法?例如,我想做这样的事情:
class Blah
    def valid_method(p1,p2,p3,opt=false)
        puts "p1: #{p1},p2: #{p2},p3: #{p3},opt: #{opt.inspect}"
    end

    def method_missing(methodname,*args)
        if methodname.to_s =~ /_with_opt$/
            real_method = methodname.to_s.gsub(/_with_opt$/,'')
            send(real_method,args) # <-- this is the problem
        end
    end
end

b = Blah.new
b.valid_method(1,2,3)           # output: p1: 1,p2: 2,p3: 3,opt: false
b.valid_method_with_opt(2,3,4)  # output: p1: 2,p2: 3,p3: 4,opt: true

(哦,和btw,上面的例子不适合我)

编辑

这是基于提供的答案的代码(上面的代码中有一个错误):

class Blah
    def valid_method(p1,'')
            args << true
            send(real_method,*args) # <-- this is the problem
        end
    end
end

b = Blah.new
b.valid_method(1,opt: true

解决方法

splat的args数组:send(real_method,* args)
原文链接:https://www.f2er.com/ruby/273829.html

猜你在找的Ruby相关文章