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

python 类方法

时间:2015-05-28 14:25:16      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:

http://www.cnpythoner.com/post/308.htmlhttp://www.cnpythoner.com/post/308.html

python类里会出现这三个单词,self和cls都可以用别的单词代替,类的方法有三种,

一是通过def定义的 普通的一般的,需要至少传递一个参数,一般用self,这样的方法必须通过一个类的实例去访问,类似于c++中通过对象去访问;

二是在def前面加上@classmethod,这种类方法的一个特点就是可以通过类名去调用,但是也必须传递一个参数,一般用cls表示class,表示可以通过类直接调用;

三是在def前面加上@staticmethod ,这种类方法是静态的类方法,类似于c++的静态函数,他的一个特点是参数可以为空,同样支持类名和对象两种调用方式;

代码:

[python] view plaincopy

class A:  
    member = "this is a test."  
    def __init__(self):  
        pass  

    @classmethod  
    def Print1(cls):  
        print "print 1: ", cls.member  

    def Print2(self):  
        print "print 2: ", self.member  


    @classmethod      
    def Print3(paraTest):  
        print "print 3: ", paraTest.member  
    @staticmethod  
    def print4():  
        print "hello"  


a = A()  
A.Print1()    
a.Print1()  
#A.Print2()  
a.Print2()  
A.Print3()  
a.Print3()   
A.print4() 

python 类方法

标签:

原文地址:http://my.oschina.net/zsjasper/blog/420976

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