本文主要是介绍Ruby: attr_reader attr_accessor用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
attr_reader 及attr_accessor主要是用来设置或读取类中的属性值.具体用法:
class Hello
attr_reader :msg
def initialize
@msg = "Hello, World"
end
def test
print @msg
end
end
h = Hello.new
h.test=>Hello, World
attr_reader 是只读,不能设置
而attr_accessor即可读取也可以设置
class Hello
attr_accessor :msg
def initialize
@msg = "Hello, World"
end
def test
print @msg
end
end
h.msg="hello,test"
h.test=> =>hello,test
注意:属性之针对实例变量即:带@的变量
这篇关于Ruby: attr_reader attr_accessor用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!