0


python 中的类属性

代码:

class Student: # 类名一般首字母大写,多个单词采用驼峰原则
    company='涛公司'
    count=0
    def __init__(self,name,score): # self 必须位于第一个参数
        self.name=name
        self.score=score
        Student.count=Student.count+1
    def say_score(self): # self 必须位于第一位
        print("我的公司是:",Student.company)
        print("{0} 的分数是{1}".format(self.name,self.score))

s1=Student("张三",66)
s1.say_score()
print('一共创建了{0}个Student对象'.format(Student.count))

内存信息:

标签: python

本文转载自: https://blog.csdn.net/weixin_42550387/article/details/142926154
版权归原作者 济南-赵文涛 所有, 如有侵权,请联系我们删除。

“python 中的类属性”的评论:

还没有评论