1. 程式人生 > >使用Python類的 __init__( ) 函式定義成員變數

使用Python類的 __init__( ) 函式定義成員變數

class Test():
    def __init__(self,s,i):
        self.s = s
        self.i = i           
        
    def excute(self):
        self.s+=" world"
        self.i+=1
        print self.s
        print self.i
        
        
t = Test("hello",2016)
t.excute()

在上述程式碼中,excute函式不需要傳入s,i即可使用,說明在__init__()中,定義的s和i是成員變數,被所在類的所有成員函式可見。