标签:分类 pre ping 面向 世界 int tin 技术分享 self
类:
一系列对象相似特征与技能的结合体
注:站在不同角度,分类不一样
在现实世界中:一定先有对象,再有类
在程序中:一定需先有类,再有对象
定义类并实例化对象:
#定义类 class LuffyStudent: school=‘luffycity‘ def learn(self): print(‘is learning‘) def eat(self): print(‘is eating‘) def sleep(self): print(‘is sleeping‘) #实例化对象 stu1=LuffyStudent() stu2=LuffyStudent() stu3=LuffyStudent() print(stu1) print(stu2) print(stu3)
标签:分类 pre ping 面向 世界 int tin 技术分享 self
原文地址:https://www.cnblogs.com/yaya625202/p/8863527.html