python整理五——get与set

类属性的get与set方法,常用。其方法短小,如果属性多了,其类拥有的空间就复杂的许多,且看下面简洁的空间:

 

 

 

 

  1. class Parrot:    
  2.     def __init__(self, x = 0):
  3.         self.__voltage = x
  4.     def voltage():
  5.         def fget(self):
  6.             return self.__voltage
  7.         def fset(self, x):
  8.             self.__voltage = x
  9.         return locals()
  10.     voltage = property(**voltage())
  11. if __name__ == '__main__':
  12.     p = Parrot(1)
  13.     print dir(p)
  14.     print p.voltage
  15.     p.voltage = 0
  16.     print p.voltage
  17.     
  18.     print 'end___'

再看看运行之后的输出:

  1. ['_Parrot__voltage''__doc__''__init__''__module__''voltage']
  2. 1
  3. 0
  4. end___

 

这样的做法更简洁,且使得类空间也简洁些许。

你可能感兴趣的:(Python)