码迷,mamicode.com
首页 > 编程语言 > 详细

Python 实例方法、@staticmethod和@classmethod

时间:2017-11-05 15:33:36      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:使用   article   调用   并且   list   copy   height   bottom   static   

Python 除了拥有实例方法外,还拥有静态方法和类方法。

[python] view plain copy
  1. class Foo(object):  
  2.     def test(self)://定义了实例方法  
  3.         print("object")  
  4.     @classmethod  
  5.     def test2(clss)://定义了类方法  
  6.         print("class")  
  7.     @staticmethod  
  8.     def test3()://定义了静态方法  
  9.         print("static")  

  • 实例方法访问方式:

[python] view plain copy
  1. ff.test();//通过实例调用  
  2. Foo.test(ff)//直接通过类的方式调用,但是需要自己传递实例引用  

  • 类方法访问方式:

[python] view plain copy
  1. Foo.test2();  
如果Foo有了子类并且子类覆盖了这个类方法,最终调用会调用子类的方法并传递的是子类的类对象。

[python] view plain copy
  1. class Foo2(Foo):  
  2.     @classmethod  
  3.     def test2(self):  
  4.         print(self)  
  5.         print("foo2 object")  
  6. f2=Foo2()  
  7. print(f2.test2())  

输出结果:

[python] view plain copy
  1. <class ‘__main__.Foo2‘>  
  2. foo2 object  

  • 静态方法调用方式:

 静态方法就跟普通的Java静态方式一样

[python] view plain copy
  1. ff=Foo();
  2. ff.test3();//使用实例调用
  3. Foo.test3();//直接静态方式调用

Python 实例方法、@staticmethod和@classmethod

标签:使用   article   调用   并且   list   copy   height   bottom   static   

原文地址:http://www.cnblogs.com/lv-xing-de-mu-ne/p/7787486.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!