class Test
def initialize
@foo = 1
@bar = 1
end
def change(a, b)
a += 1
b -= 1
end
def print
change(@foo,@bar)
puts "#{@foo},#{@bar}"
end
end
由于变量foo
和 bar
可能在这个类中多次一起修改,我想知道我是否可以使用一种方法来完成这项工作。我想在仍然进入上述代码2,0
的同时打印方法。有没有一种简单的方法可以在 Ruby 中编写这样的方法?print
1,1