美文网首页
@property关键字

@property关键字

作者: 鲸随浪起 | 来源:发表于2019-06-25 00:43 被阅读0次
    class Cell:
        _a = 'a'
        @property
        def state(self):
            return self._a
        @state.setter
        def state(self,value):
            self._a = value
    if __name__ == '__main__':
        c = Cell()
        c.stare = 'b'  #设置
        print(c.state)  #读取
    

    相关文章

      网友评论

          本文标题:@property关键字

          本文链接:https://www.haomeiwen.com/subject/rqhzqctx.html