实例属性
1.类被实例化后才会具有的属性
2.一般在_init_()方法中创建并初始化
3.直接使用即定义:self.<属性名>
4.引用方法:self.<属性名>
5.self用来表示类的实例的
例如:在类TestCss当中定义实例属性
class TestCss:
cssa = 'class-attribe'
def __init__(self):
self.a = 0
self.b = 10
def info(self):
print('a:',self.a,'b:',self.b)
if __name__ == '__main__':
tc = TestCss()
tc.info()
程序的运行结果为:
![11.png](http://studygolang.qiniudn.com/161110/0b4de817bd1b7818fd7dff69f4e11cd4.png)
6.类外用实例名.属性名方式定义和引用
例如:
class TestCss:
cssa = 'class-attribe'
def __init__(self):
self.a = 0
self.b = 10
def info(self):
print('a:',self.a,'b:',self.b)
if __name__ == '__main__':
tc = TestCss()
tc.info()
if __name__ == '__main__':
tc = TestCss()
tc.info()
tc.color = 'red'
print(tc.color)
程序的运行结果为:
![22.png](http://studygolang.qiniudn.com/161110/1be5cecc24dbd93ffb41bd0b8ff93881.png)
7.相同类的不同实例其实例属性是不相关的
例如:
lass TestCss:
cssa = 'class-attribe'
def __init__(self):
self.a = 0
self.b = 10
def info(self):
print('a:',self.a,'b:',self.b)
if __name__ == '__main__':
tc = TestCss()
tc.info()
tc = TestCss()
tca = TestCss()
tc.a = 100
tc.b = 200
tc.info()
tca.info()
程序的运行结果为:
![33.png](http://studygolang.qiniudn.com/161110/f83839963cb69b2ce02c148a30f396eb.png)
8.一般不建议在_init_()方法之外中创建和初始化实例属性
9.一般不推荐类外定义和修改,修改可以单独定义方法。
原文链接:http://www.maiziedu.com/wiki/python/instance/
有疑问加站长微信联系(非本文作者)