python物件導向編程

來源:互聯網
上載者:User

標籤:student   obj   通過   物件導向編程   編程   nbsp   python解譯器   怎麼   name   

1.訪問限制

  如果要讓內部屬性不被外部存取,可以把屬性的名稱前加上兩個底線__,在Python中,執行個體的變數名如果以__開頭,就變成了一個私人變數(private),只有內部可以訪問,外部不能訪問,所以,我們把Student類改一改:

class Student(object):    def __init__(self, name, score):        self.__name = name        self.__score = score    def print_score(self):        print(‘%s: %s‘ % (self.__name, self.__score))

   無法從外部存取執行個體變數.__name執行個體變數.__score了。不能直接存取__name是因為Python解譯器對外把__name變數改成了_Student__name,所以,仍然可以通過_Student__name來訪問__name變數,但是強烈建議你不要這麼幹,因為不同版本的Python解譯器可能會把__name改成不同的變數名。

  但是如果外部代碼要擷取name和score怎麼辦?可以給Student類增加get_nameget_score這樣的方法:

class Student(object):    def __init__(self, name, score):        self.__name = name        self.__score = score    def print_score(self):        print(‘%s: %s‘ % (self.__name, self.__score))    def get_name(self):        return self.__name    def get_score(self):        return self.__score

 

python物件導向編程

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.