__new__,__str__,__repr__,__call__
# __author: "ZXYang"
# date: 2020/12/15
"""
以下方法何时触发:
__new__:创建对象时触发;
__str__:print或str函数触发
__repr__:控制台或者repr内置函数触发
__call__:对象()调用时触发
"""
# __author: "ZXYang"
# date: 2020/12/15
"""
以下方法何时触发:
__new__:创建对象时触发;
__str__:print或str函数触发
__repr__:控制台或者repr内置函数触发
__call__:对象()调用时触发
"""