類別函數

類別函數就是定義再類別(class)裡面的函數(method)

class Cat:

    def __init__(self):
        print("I'm a Constructor")

    def __del__(self):
        print("I'm a Destructor")

    def jump(self):
        print("我是類別函數")

    def eat(self):
        print("我也是類別函數")

    def bite(self):
        print("me too")

    def grab(self):
        print("+1")

animal = Cat()
animal.jump() #print 我是類別函數
animal.eat() #print 我也是類別函數
animal.bite() #print me too
animal.grab() #print +1

上述程式碼,已經說明了一切

results matching ""

    No results matching ""