私有成员变量:变量名以__开头
私有成员方法:方法名以__开头
内部可以使用,外部不能使用(类对象不能使用)
class Phone:
# 私有成员变量
__current_voltage = 0.5
# 私有成员方法
def __keep_single_core(self):
print("111111")
# 内部方法:可访问私有方法和属性
def call_by_5g(self):
if self.__current_voltage >= 1:
print("5g通话里已开启")
else:
self.__keep_single_core()
print("电量不足")
phone = Phone()
# print(phone.__current_voltage) # 报错
# phone.__keep_single_core() # 报错
phone.call_by_5g()
例子:
class Phone:
__is_5g_enable = False
def __check_5g(self):
if self.__is_5g_enable == True:
print("5g开启")
else:
print("5g关闭,使用4g网络")
def call_by_5g(self):
self.__check_5g()
print("通话中")
phone1 = Phone()
phone1.call_by_5g()