我来自Java世界,正在阅读Bruce Eckels的Python 3模式、配方和习语。
在阅读类时,它继续说在Python中不需要声明实例变量。您只需在构造函数中使用它们,然后繁荣,它们就在那里。
例如:
class Simple:
def __init__(self, s):
print("inside the simple constructor")
self.s = s
def show(self):
print(self.s)
def showMsg(self, msg):
print(msg + ':', self.show())
如果这是真的,那么类Simple
的任何对象都可以在类之外更改变量s
的值。
例如:
if __name__ == "__main__":
x = Simple("constructor argument")
x.s = "test15" # this changes the value
x.show()
x.showMsg("A message")
在Java,我们已经学习了公共/私有/保护变量。这些关键字是有意义的,因为有时您希望类中的变量在类之外没有人可以访问。
为什么Python中不需要这个?