python 類裡面的靜態方法

2022-08-11 16:09:18 字數 584 閱讀 6719

#/usr/bin/env/ python

# _*_ coding:utf-8 _*_

# author:linqinglong

#建立靜態方法的用處

class mssqlhelper:

@staticmethod

def add(select):

pass

@staticmethod

def delete(select):

pass

@staticmethod

def update(select):

pass

@staticmethod

def sql(select):

pass

#需要建立n多個物件, 用靜態方法不需要建立n多個物件

ms = mssqlhelper()

ms.add(select)

mssqlhelper.add(select)

#建立乙個模組,然後寫入下面函式,呼叫模組裡的函式與靜態方法的區別

#能說明白靜態方法是物件導向的思想,與呼叫module內方法無異

def add(select):

python裡面的index方法

今天是學習python的第七天 python index 方法檢測字串中是否包含子字串 str 如果指定 beg 開始 和 end 結束 範圍,則檢查是否包含在指定範圍內,該方法與 python find 方法一樣,只不過如果str不在 string中會報乙個異常。index 方法語法 str.in...

js裡面的例項方法和靜態方法

靜態方法是可以直接用類名.方法名去呼叫的,而例項方法是不可以的,他必須要用例項才可以去呼叫。var person function person.say function person.prototype.getname function name 以上的 實際上很簡單,首先是定義了乙個functi...

python的class裡面的類變數

python類裡面的注意事項 在學習python寫類的過這個中遇到些問題,感覺和以前語言寫類的方式有些差別,可能是自己學藝不精才遇到這些問題。class dog n 這是乙個類變數 類變數 n list name 這是類的name def init self,name,weapen,role,mon...