• 属性property


    一、私有属性添加getter和setter方法

    class Money(object):
        def __init__(self):
            self.__money = 0
    
        def getMoney(self):
            return self.__money
    
        def setMoney(self, value):
            if isinstance(value, int):
                self.__money = value
            else:
                print("error:不是整型数字")
    

    二、使用property升级getter和setter方法

    class Money(object):
        def __init__(self):
            self.__money = 0
    
        def getMoney(self):
            return self.__money
    
        def setMoney(self, value):
            if isinstance(value, int):
                self.__money = value
            else:
                print("error:不是整型数字")
        money = property(getMoney, setMoney)
    

    运行结果:

    In [1]: from get_set import Money
    
    In [2]: 
    
    In [2]: a = Money()
    
    In [3]: 
    
    In [3]: a.money
    Out[3]: 0
    
    In [4]: a.money = 100
    
    In [5]: a.money
    Out[5]: 100
    
    In [6]: a.getMoney()
    Out[6]: 100
    

    三、使用property取代getter和setter方法

    @property成为属性函数,可以对属性赋值时做必要的检查,并保证代码的清晰短小,主要有2个作用

    • 将方法转换为只读
    • 重新实现一个属性的设置和读取方法,可做边界判定
    class Money(object):
        def __init__(self):
            self.__money = 0
    
        @property
        def money(self):
            return self.__money
    
        @money.setter
        def money(self, value):
            if isinstance(value, int):
                self.__money = value
            else:
                print("error:不是整型数字")
    

    运行结果

    In [3]: a = Money()
    
    In [4]: 
    
    In [4]: 
    
    In [4]: a.money
    Out[4]: 0
    
    In [5]: a.money = 100
    
    In [6]: a.money
    Out[6]: 100
    
  • 相关阅读:
    Jxl 简单运用 Excel创建,插入数据,图片,更新数据,
    tomcat端口号被占用
    QQ、MSN、淘包旺旺、Skype临时对话的html链接代码
    验证信息
    wpf学习笔记数据绑定功能总结
    wpfStyle注意点
    wpf轻量绘图DrawingVisual
    wpfDrawingBrush注意点
    wpf容易误解的Image
    wpf装饰器
  • 原文地址:https://www.cnblogs.com/mxsf/p/10374465.html
Copyright © 2020-2023  润新知