首页 > 代码库 > python 之用装饰器@property,把方法变成一个特性

python 之用装饰器@property,把方法变成一个特性

# -*- coding: utf-8 -*-
"""
Created on Sun Nov 13 23:19:03 2016

@author: toby
"""
#知识点:用装饰器@property,把方法变成一个特性

class Province:
    memo = ‘One of China\‘s 23 provinces‘ #静态字段
    
    def __init__(self,name,capital,leadership):
        self.Name = name #动态字段
        self.Capital = capital #动态字段
        self.Leadership = leadership #动态字段
        
    def sports(self): #定义一个动态方法,类不能访问动态方法
        print self.Name + ‘The sports meeting‘
    
    #把方法变成一个特性
    @property #自带的装饰器
    def Bar(self):
        print self.Name
        return ‘somthing‘ #也是可以有一个返回值的
        
#实例化两个对象,对象名分别是:hb、sd
hb = Province(‘hebei‘,‘shjiazhuang‘,‘liyang‘)
sd = Province(‘shandong‘,‘jinan‘,‘angshenghui‘)

#通过对象访问这个属性,把方法的访问形式变成访问字段的访问形式
print hb.Bar


本文出自 “FA&IT运维-Q群:223843163” 博客,请务必保留此出处http://freshair.blog.51cto.com/8272891/1874165

python 之用装饰器@property,把方法变成一个特性