其他分享
首页 > 其他分享> > 类的创建和组成

类的创建和组成

作者:互联网

创建类

格式:

类名一个或多个单词组成,每个单词的首字母大写

class Student:
    pass

  

类的组成

#创建学生类
class Student: # 类属性 peacr='河北' #初始化方法 def __init__(self,name,age): self.name=name self.age=age #实例方法eat def eat(self): print(self.name+'吃东西') @staticmethod def drink(): print() stu=Student('张三',30) stu.eat()

类属性:直接写在类里的变量叫做类属性

实例方法:类中的方法,self时必须有的

静态方法:使用@staticmethod进行修饰的方法

类方法:使用@classmethod进行修饰的方法

初始化方法:创建这个类的实例时会调用该方法

 

标签:name,创建,self,age,Student,方法,eat,组成
来源: https://www.cnblogs.com/rxy622061/p/16348998.html