大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章将为大家详细讲解有关python类方法和普通方法区别是什么,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
创新互联是一家专业提供蚌埠企业网站建设,专注与成都做网站、成都网站设计、成都外贸网站建设、H5响应式网站、小程序制作等业务。10年已为蚌埠众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。python类方法和普通方法区别
下面用例子的方式,说明其区别。
首先, 定义一个类,包括2个方法:
class Apple(object): def get_apple(self, n): print "apple: %s,%s" % (self,n) @classmethod def get_class_apple(cls, n): print "apple: %s,%s" % (cls,n)
类的普通方法
类的普通方法,需要类的实例调用。
a = Apple() a.get_apple(2)
输出结果
apple: <__main__.Apple object at 0x7fa3a9202ed0>,2
再看绑定关系:
print (a.get_apple)>
类的普通方法,只能用类的实例去使用。如果用类调用普通方法,出现如下错误:
Apple.get_apple(2) Traceback (most recent call last): File "static.py", line 22, inApple.get_apple(2) TypeError: unbound method get_apple() must be called with Apple instance as first argument (got int instance instead)
类方法
类方法,表示方法绑定到类。
a.get_class_apple(3) Apple.get_class_apple(3) apple:,3 apple: ,3
再看绑定关系:
print (a.get_class_apple) print (Apple.get_class_apple)
输出结果,用实例和用类调用是一样的。
> >
关于python类方法和普通方法区别是什么就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。