鱼C论坛's Archiver
论坛
›
Python交流
› 类和对象的问题
19420107
发表于 2021-2-8 17:58:44
类和对象的问题
class Playground():
def __init__(self):
self.price = 100
class Playground():
price = 100
请问这两种写法有什么不同吗??
哪种是类的属性????????
qiuyouzhi
发表于 2021-2-8 18:00:35
第一个是实例属性,只能通过实例访问
Playground().price
第二个是类属性,实例和类都可以访问
°蓝鲤歌蓝
发表于 2021-2-8 18:28:05
Playground.price
你分别试一下这个就知道了
页:
[1]
查看完整版本:
类和对象的问题