位置:首頁(yè) > 軟件操作教程 > 編程開發(fā) > Python > 問題詳情

Python 面向?qū)ο缶幊蹋ɑ趯?duì)象)

提問人:楊紫紅發(fā)布時(shí)間:2020-11-17

 class Foo:

      def __init__(self, a, b):

        self.a = a

        self.b = b


      def show_a(self):

        print self.a


      def show_b(self):

        print self.b


    __init__ 函數(shù):每次生成類的時(shí)候都會(huì)執(zhí)行的, self 指向類對(duì)象自身。

記住, 類函數(shù)(或者叫做方法) 它的第一個(gè)參數(shù) “self” 不要忘記寫了


foo_obj = Foo("I'm A", "I'm B")

     foo_obj.show_a()

     foo_obj.b = "Hello world!"

     foo_obj.show_b()

繼續(xù)查找其他問題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部