我只是想在 ruby 中探索 oops 概念
使用 mixins 继承
重载(不完全)作为 var arg 传递
我只是想在 OOPS 术语中我们称之为什么
class Box
def method1(str)
puts "in old method 1"
end
def method1(str)
puts "in new method 1"
end
end
# create an object
box = Box.new
box.method1("asd")
这是我的 ruby 课程,显然定义的一秒会被执行,但我正在寻找 SO 对此的任何专家理解