gpt4 book ai didi

ruby - 如何向后运行 Ruby 函数?

转载 作者:数据小太阳 更新时间:2023-10-29 08:16:08 25 4
gpt4 key购买 nike

我想要一个像 foo.method1.method2.method3 这样反向运行函数的类,我希望函数先运行 method3 method2 然后运行 ​​method1。但现在是 1 2 3。我认为这称为惰性求值,但我不确定。

我对 Ruby 几乎一无所知,所以请原谅这个问题,如果它很简单,我应该已经知道了。

最佳答案

当然可以。听起来您在考虑惰性评估方面走在正确的道路上,您只需要使用运行排队方法的方法结束每个方法调用列表。

class Foo

def initialize
@command_queue = []
end

def method1
@command_queue << :_method1
self
end

def method2
@command_queue << :_method2
self
end

def method3
@command_queue << :_method3
self
end

def exec
@command_queue.reverse.map do |command|
self.send(command)
end
@command_queue = []
end

private

def _method1
puts "method1"
end

def _method2
puts "method2"
end

def _method3
puts "method3"
end

end

foo = Foo.new
foo.method1.method2.method3.exec


method3
method2
method1

关于ruby - 如何向后运行 Ruby 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4157863/

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