最佳答案
如实例变量属于某个类别,我可否直接使用该类别的实例来存取该实例变量(例如 @hello
) ?
class Hello
def method1
@hello = "pavan"
end
end
h = Hello.new
puts h.method1