Python 入門指南 5.0

exercise1604.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 示範靜態方法
class Exercise1604:
    # 定義類別屬性
    count = 0

    # 靜態方法遞增類別屬性
    @staticmethod
    def add_1():
        Exercise1604.count += 1

    # 實體方法利用參數與靜態方法遞增類別屬性
    def add_p(self, p):
        for i in range(p):
            self.add_1()

# 以下是執行部分
# 建立 Exercise1604 類別的物件
e = Exercise1604()
# 呼叫實體方法遞增類別屬性
e.add_p(100)
# 印出類別屬性
print(e.count)

# 檔名: exercise1604.py
# 說明:《Python入門指南》的練習
# 網站: http://kaiching.org
# 作者: 張凱慶
# 時間: 2023 年 9 月

回到練習題目
上一頁 exercise1603.py
回 Python 入門指南 5.0 首頁
下一頁 exercise1605.py
回 Python 教材首頁
回程式語言教材首頁