python py__getters-setters.py
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python py__getters-setters.py相关的知识,希望对你有一定的参考价值。
#!/usr/bin/python3
"""
Example Source:
http://stackoverflow.com/questions/2627002/whats-the-pythonic-way-to-use-getters-and-setters
Python Property:
http://docs.python.org/library/functions.html?highlight=property#property
"""
class C(object):
def __init__(self):
self._x = None
@property
def x(self):
"""Getter for 'x' propery"""
return self._x
@x.setter
def x(self, value):
self._x = value
@x.deleter
def x(self):
del self._x
以上是关于python py__getters-setters.py的主要内容,如果未能解决你的问题,请参考以下文章
python包中__init__.py的作用
python中 __init__.py的作用
[python][转载]__init__.py使用
Python __init__.py 作用详解
Python __init__.py 作用详解
python2中的__init__.py文件的作用