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

python property属性

时间:2014-07-01 10:00:34      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:python


可以检查参数,一直没注意这个语言特性,忽略了很多细节,感谢 vitrox

class Person( object ):
    
    def __init__( self, name ):
        if not isinstance( name, str ):
            raise TypeError( '...' )
        else:
            self.__name = name
            
    @property
    def name( self ):
        print 'get name.'
        return self.__name


    @name.setter
    def name( self, newname ):
        print 'set name.'
        if not isinstance( newname, str ):
            raise TypeError( '...' )
        else:
            self.__name = newname
            print 'set ok.'
        

p = Person( 'A' )
p.name = 'B'
print p.name


python property属性,布布扣,bubuko.com

python property属性

标签:python

原文地址:http://blog.csdn.net/pandora_madara/article/details/36091775

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