文章摘要:Python构造函数有哪些 python构造函数是什么
Python中的构造函数是__init__函数 Python中子类如果定义了构造函数,父类的构造函数是不会执行 […]
Python中的构造函数是__init__函数
Python中子类如果定义了构造函数,父类的构造函数是不会执行的。
__init__函数使用方法:
class A:
def __init__(self, name):
self.name = name
class B(A):
def __init__(self, age):
self.age = age