python中的类中属性元素加self.和不加self.的区别
在类中,self只能在函数中使用,表示的是实例属性,就是每个实例可以设置不值,而不相互影响。
如果在类级别使用没有self的属性,是类属性,一般作为全局变量来用的。
事实上:就是一个是类属性 一个是对象属性 类和实例都可以访问到属性
当你想让这个变量成为这个类的子变量时
class lc():
def init(self):
self.a = 5
smalllc = lc()
print smalllc.
如果不加self的话 , 那么就不能 smalllc.a 这样访问了
不知名CV算法工程师:
博客园:https://home.cnblogs.com/u/Cver-Young1209
CSDN:https://blog.csdn.net/weixin_41001522
简书;https://www.jianshu.com/u/fe3b8379b496
github:https://github.com/y00423502
Wechat:HelloWorld_Fun
微信公众号:Cver-Young1209
知乎:https://www.zhihu.com/people/Cver-Young1209
B站:https://space.bilibili.com/481914314
gitee:https://gitee.com/stef1209