141

によってオブジェクトを作成し、メソッドを動的に呼び出そうとしています

Object.const_get(class_name).new.send(method_name,parameters_array)

これはいつでも正常に機能しています

Object.const_get(RandomClass).new.send(i_take_arguments,[10.0])

しかし、間違った数の引数 1 を 2 に投げています

Object.const_get(RandomClass).new.send(i_take_multiple_arguments,[25.0,26.0])

定義されたランダム クラスは次のとおりです。

class RandomClass
def i_am_method_one
    puts "I am method 1"
end
def i_take_arguments(a)
    puts "the argument passed is #{a}"
end
def i_take_multiple_arguments(b,c)
    puts "the arguments passed are #{b} and #{c}"
end
    end

ルビーメソッドに複数のパラメータを動的に送信する方法について、誰かが私を助けてくれますか

4

2 に答える 2

260
send("i_take_multiple_arguments", *[25.0,26.0]) #Where star is the "splat" operator

また

send(:i_take_multiple_arguments, 25.0, 26.0)
于 2012-12-10T05:53:25.247 に答える