によってオブジェクトを作成し、メソッドを動的に呼び出そうとしています
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
ルビーメソッドに複数のパラメータを動的に送信する方法について、誰かが私を助けてくれますか