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

python类方法和静态方法

时间:2014-05-26 18:16:42      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   a   color   int   

 

C++的静态方法是用static关键字,python j是没用static的。

python中实现静态方法和类方法都是依赖于python的修饰器来实现的。

class MyClass: 

    def  method(self): 

           print("method") 

    @staticmethod 

    def  staticMethod()

            print("static method") 

     @classmethod 

     def classMethod(cls)

           print("class method") 

 

大家注意到普通的对象方法、类方法和静态方法的去别了吗?

对象方法有self参数,类方法有cls参数,静态方法是不需要这些附加参数的。

在C++中是没有类方法着个概念的的

python类方法和静态方法,布布扣,bubuko.com

python类方法和静态方法

标签:style   c   class   a   color   int   

原文地址:http://www.cnblogs.com/fangshenghui/p/3752504.html

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