python类属性的内存分析

671次阅读
没有评论

python类属性的内存分析

说明

1、Python在堆内存中创建数据类型为type的student类。

2、student类有类属性classname和teachername两种属性。

3、实例属性不在类中。

而是通过Student(“Tome”、19)创建的对象。

4、实例对象s1.information调用可调用类属性。

实例

class Student:
    classname = "Twenty"    # 类属性
    teachername = "JueJing"  # 类属性
    count = 0  # 类属性
 
    def __init__(self,name,age): #实例属性
        self.name = name
        self.age = age
 
    def information(self):
        print("{0} ".format(Student.classname))  # 调用类属性
        print("{0} age is {1}".format(self.name,self.age)) #调用实例属性
 
s1 = Student("Tome",19)
s1.information()
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2022-04-23发表,共计521字。
新手QQ群:570568346,欢迎进群讨论 Python51学习