当前位置:Gxlcms > Python > python如何调用类方法

python如何调用类方法

时间:2021-07-01 10:21:17 帮助过:479人阅读

python中的类用来描述具有相同的属性和方法的对象的集合。它定义了该集合中每个对象所共有的属性和方法。对象是类的实例。

要想调用类中的方法,首先要定义一个类,python中定义类使用class关键字

class Person():
    def __init__(self,name,age):#__init__()方法为类的构造方法
        self.name = name 
        self.age = age
    def detail(self):(通过self调用被封装的内容)
        print(self.name)
        print(self.age)
obj1 = Person('santos',18)
obj1.detail() #python将obj1传给self参数

python调用类中的方法有两种方式:通过对象直接调用和通过self间接调用。

以上就是python如何调用类方法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行