这是我的简单测试代码:
def test_function
0.tap do |v|
v += 10
end
end
p test_function
为什么我在这里得到 0 ?我在等10个。
更新:
class TestClass
def initialize
@v = 0
end
def inc
@v = @v + 1
end
end
def test_function
0.tap do |v|
v += 10
end
end
def test_function_2
TestClass.new.tap { |obj|
obj.inc
}
end
p test_function
p test_function_2
0
测试类:0x29244f0 @v=1