📜  受保护的与私有的python代码示例

📅  最后修改于: 2022-03-11 14:45:37.020000             🧑  作者: Mango

代码示例1
Protected : 
protected members of a class can be accessed by other members within 
the class and are also available to their subclasses.
Add a prefix _ (single underscore)

Private : 
The private members of a class are only accessible within the class.

 In Python, a private member can be defined by using a prefix 
  __ (double underscore).