一樣是彭彭老師的教學影片,附上網址:
https://www.youtube.com/watch?v=uPKgQ3FoVtY&list=PL-g0fdC5RMboYEyt6QS2iLb_1m7QcgfHk&index=17&t=12s
定義類別
1.1 使用 class 建立類別
1.2 建立類別的屬性 ( 封裝在類別中的變數或函式 )
使用類別的基本語法:類別名稱.屬性名稱
class IO:
supportedSrcs=["console","file"]
def read(src):
if src not in IO.supportedSrcs:
print("Not Supported")
else:
print("Read from",src)
print(IO.supportedSrcs) # 印出列表
IO.read("file") # 呼叫類別中的函式(屬性)
IO.read("internet") # internet 不屬於 IO 的屬性,因此顯示 Not Supported
今天的內容也蠻容易的,前面有了解函式的使用方式之後再來看這邊就很輕鬆。