如何访问python的私有成员函数 python类中的私有成员访问方式

主机教程 建站分享 2年前 (2022-11-29) 205次浏览

文章摘要:如何访问python的私有成员函数 python类中的私有成员访问方式

访问python私有成员函数的方法 class Plane(): # 私有属性 __air_sister = […]

访问python私有成员函数的方法

class Plane():

# 私有属性

__air_sister = "20个"

# 公有绑定方法

def fly(self):

print("飞机会飞")

# 公有普通方法

def fly2():

print("飞机会飞2")

# 私有的绑定方法

def __oil_info(self):

print("飞机百公里油耗是100升")

# 私有的普通方法

def __oil_info2():

print("飞机百公里油耗是100升")

# 公有的绑定方法

def pub_info(self):

print(self.__air_sister)

self.__oil_info()

# 公有的普通方法

def pub_info2():

print(Plane.__air_sister)

Plane.__oil_info2()


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:如何访问python的私有成员函数 python类中的私有成员访问方式
文章链接:http://www.7966.org/post/14357.html
转载请注明出处

喜欢 (0)