标签:table puts key access number str pytho put python
attr_reader : name | 表示name只读 |
---|---|
attr_write : name | 表示name只写 |
attr_accessor: name | 表示可读可写 |
module M
def mm
puts "helloworld!"
end
end
class A
include M
def initalize
puts "aa"
end
end
a = A.new
a.mm
class Application
attr_accessor :status
def initialize
end
public
def print_status
puts "all system go!"
end
private
def password
@password = 123456
end
end
标签:table puts key access number str pytho put python
原文地址:http://www.cnblogs.com/ktpd/p/6062243.html