类的四种方法

  • Post author:
  • Post category:其他


''''''
'''
类中的方法分为四种:
1、实例方法
2、魔术方法  __xxx__  特殊用途,一般不需要我们明确调用
3、类方法
4、静态方法
'''

# class fish(object):
#     def __init__(self,age):#构造方法
#         self.age=age
#     # def __del__(self):#类不用,销毁变量时会触碰析构变量
#     #     print("我是析构变量")
#     def swim(self):#实例方法
#         print("i can swim")
#
#     @classmethod  #类方法
#     def test(cls,a): #cls由解释器自动传参,代表当前类的类名
#         print("我是类方法",a)
#
#     @staticmethod
#     def mytest():#静态方法:没有默认的cls和self
#          print("我是静态方法")
#
#     #实现两个元素相加
#     def __add__(self,other):
#         return self.age+other.age
#     #打印对象信息
#     def __s



版权声明:本文为ventureyyt原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。