Python物件導向程式設計(二)

2021-09-07 21:40:15 字數 1128 閱讀 9358

製作乙個計時器,用來計算程式執行時間!

以下是實現**:

import time as t

class mytimer:

def __init__(self):

self.prompt="未開始計時"

self.unit=["年","月","日","時","分鐘","秒"]

self.lasted=

self.begin=0

self.end=0

def __str__(self):

return self.prompt

__repr__=__str__

#計算兩次執行結果的和

def __add__(self,other):

result=

timer="一共執行了"

for index in range(6):

timer+=str(result[index])+self.unit[index]

return timer

#開始計時

def start(self):

self.begin=t.localtime()

self.prompt="請先結束程式在檢視執行時間!"

print("計時開始!")

#停止計時

def stop(self):

if not self.begin:

print("請先開始計時!")

else:

self.end=t.localtime()

print("計時結束!")

self._calc()

#內部方法,計算時間

def _calc(self):

self.lasted=

self.prompt="一共執行了"

for index in range(6):

if self.lasted[index]:

self.prompt+=str(self.lasted[index])+self.unit[index]

#為變數進行初始化

self.begin=0

self.end=0

python 物件導向程式設計

新式類 class mynewobjecttype bases define mynewobjecttype class class suite經典類 沒有指定乙個父類,或者子類化的基本類沒有父類,就建立了乙個經典類 class mynewobjecttype define mynewobjectt...

Python物件導向程式設計

class mynewobjecttype bases define mynewobjecttype class class suite例項化 myfirstobject mynewobjecttype class mydatawithmethod object defprintfoo self p...

python物件導向程式設計

程式設計正規化 程式設計時程式設計師用特定的語法 資料結構 演算法組成的 在計算機上執行任務的過程。實現乙個任務有不同的方式,對這些不同的程式設計方式的特點進行歸納總結得出的程式設計方式類別,即為程式設計正規化。不同的程式設計正規化本質上代表對各種型別的任務採取的不同的解決問題的思路,兩種最重要的程...