跳到主要內容


Python-類別

Python

類別

基本概念說明


參考 程式語言概念-類別內容


基本語法


class className:
      def __init__(self, var1):
              this.Name
      def myMethod(self, var1):
              print('helloworld')
obj = className('a')


語法說明


class         定義類別
className 類別名稱
def            定義函數
__init__      初始化函數
myMethod  自訂函數
this            本類別中自訂的變數或函數存放位置
self            導入本類別自訂變數或函數
var1            外部導入的變數

在函數括弧中加入self、var,就表示該函數會導入self、var,var為在使用的時候需要給予其職
類別在使用的時候,直接使用變數存放即可

繼承

class Name1:
    ....

class Name2(Name1):
    ....

語法說明

在新的類別的名稱後方括弧中,加入被繼承的名稱即可

封裝

不討論,因為如使用者能夠得到編寫的程式,封裝其實沒有意義,而python大多的腳本都是OpenSource的所以實在意義不大,即便使用.pyc的方式,也是有程式能夠輕易反向工程出原本的程式碼。

多型

class Name1:
    def A():
      print('Hello World')

class Name2(Name1):
    def A():
       print('Hello')

class Name3(Name1):
   def A():
      super().A()
      print('hello')

語法說明

在繼承之後對同樣的名稱函數進行覆寫被稱為多型,若要連同原先的指令流程加上新的流程要使用suer()。

 投影片-slideshare:Python_函數
 影片-youtube:Python_函數
 程式碼-Github:Python_函數
下一單元:Python-開啟檔案

留言

這個網誌中的熱門文章

程式語言學習概論(1)

程式語言 介紹

Python-設計模式-共享模式

Python 設計模式 共享模式 class Font:     def __init__(self):        self.Size = 0        self.Type = ''     def printAll(self):        print(self.Size, self.Type)  class FontFacotry:     def Word(self, Size=3, Type='1'):        F = Font()        F.Size = Size        F.Type = Type        return F  FontSize = [1,2,3] FontType = ['1','2','3'] Facotry = FontFacotry()  F1 = Facotry.Word(FontSize[0],FontType[0])  F1.printAll()  F2 = Facotry.Word( FontSize[1],FontType[1] ) F2.printAll()  F3 = Facotry.Word( FontSize[2],FontType[2] ) F3.printAll() 程式碼說明 font 定義類別 fontFacotry物件生成工廠 fontsize用來儲存font大小的外部空間 fonttype用來儲存font種類的外部空間

Python-設計模式-建造者模式

Python 設計模式 建造者模式 範例一 class Product:     def __init__(self):        self.name=''       self.parameter1 = ''       self.parameter2 = ''       self.parameter3 = '' class Builder:    def __init__(self):       self.product = None     def SetName(self):        pass     def SetParameter1(self):        pass     def SetParameter2(self):        pass     def SetParameter3(self):        pass  class Product1Builder(Builder):     def SetName(self):        self.product.name = 'Product1'    def SetParameter(self):        self.product.parameter1 = '1-1'     def SetParameter(self):        self.product.parameter2 = '1-2'  ...