gpt4 book ai didi

ruby - 有没有办法在ruby中随机调用特定类的方法?

转载 作者:数据小太阳 更新时间:2023-10-29 07:54:57 26 4
gpt4 key购买 nike

我想知道是否可以做这样的事情:

class Something
def A
puts "A"
end
def B
puts "B"
end
def C
puts "C"
end
def D
puts "D"
end
end

y = Something.new
x = Random.new
x.rand(y)

然后得到“Something”类的随机结果

最佳答案

单行答案是:

Something.new.send(Something.instance_methods(false).shuffle.first)

解释

Something.instance_methods(false)
# Will give you [:A, :B, :C, :D]

Something.instance_methods(false).shuffle.first
# Will give you a random method out of it

Something.new.send(<method name>)
# Will call that random method and give you output

来自评论(一个很好的建议)

你可以像这样使用它:

Something.instance_methods(false).sample 而不是 Something.instance_methods(false).shuffle.first

关于ruby - 有没有办法在ruby中随机调用特定类的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44848513/

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