当前位置: 首页 > 图灵资讯 > 行业资讯> python类属性的内存分析

python类属性的内存分析

来源:图灵python
时间: 2024-07-07 19:42:40

说明

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

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

3、实例属性不在类中。

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

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

实例

classStudent:
classname="Twenty"#类属性
teachername="JueJing"#类属性
count=0#类属性

def__init__(self,name,age):#实例属性
self.name=name
self.age=age

definformation(self):
print("{0}".format(Student.classname))#调用类属性
print("{0}ageis{1}".format(self.name,self.age))#调用实例属性

s1=Student("Tome",19)
s1.information()

以上是python属性的内存分析,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。