欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python_类的私有属性、私有方法

程序员文章站 2022-05-22 16:45:33
1.私有属性:只需要在初始化时,在属性名前加__ 2.私有方法:只需要在方法名前加__ ......

1.私有属性:只需要在初始化时,在属性名前加__

class cup:

    #构造函数,初始化属性值
    def __init__(self,capacity,color):
        #私有属性,只需要在属性名字前加__
        self.__capacity=capacity
        self.color=color

    def retain_water(self):
        print("杯子颜色:"+self.color+",杯子容量:"+self.__capacity+",正在装水.")

    def keep_warm(self):
        print("杯子颜色:"+self.color+",杯子容量:"+self.__capacity+",正在保温.")

currentcup=cup('50ml','紫色')
currentcup.retain_water()

 

2.私有方法:只需要在方法名前加__

class cup:

    #构造函数,初始化属性值
    def __init__(self,capacity,color):
        #私有属性,只需要在属性名字前加__
        self.__capacity=capacity
        self.color=color
    #私有方法,只需要在方法名前加__
    def __retain_water(self):
        print("杯子颜色:"+self.color+",杯子容量:"+self.__capacity+",正在装水.")

    def keep_warm(self):
        print("杯子颜色:"+self.color+",杯子容量:"+self.__capacity+",正在保温.")

currentcup=cup('50ml','紫色')
#外部调用失败,因为__retain_water()方法是私有的
#currentcup.__retain_water()
currentcup.keep_warm()

 

上一篇: C++生成和解析XML文件

下一篇: 姐姐