#! /usr/bin/python3 # -*-coding:UTF-8-*- class DefaultInit(object): def __init__(self): print('我是不带参数的__init__方法。') DefaultInit() print('类实例化结束。')