私有屬性只需要在名稱前面加雙下劃線,例如:
class person:
__name = 'lily'
p = person()
print(p.__name)
這樣是訪問不到的;
應該這麼寫:
class person:
__name = 'lily'
def getname(self):
return self.__name
p = person()
print(p.getname())
因為python的私有是偽私有,其實可以直接這麼寫(物件._類名__屬性名):
class person:
__name = 'lily'
p = person()
print(p._person__name)
公有 私有和受保護
class base struct public derived public base ok i is protected derived classes can access i int use base2 error j is private struct protect drived pro...
例項023公有和私有
module module1 public class a private thisx as single 這是私有的 end class public class b inherits a public sub ok dim x as integer thisx 10 這是錯誤的 x 10 msg...
具有公有和私有子網的 VPC
如何建立 原理首先建立乙個vpc 分配乙個位址池 建立好了 我們向您在 vpc 中的例項分配 ip 位址。您可以使用私有 ip 位址在 vpc 例項間進行通訊。您可以使用公用 ip 位址在您的例項和 internet 之間進行通訊。note 要確保您的例項可以與 internet 通訊,您還必須將 ...