靜態方法:staticmethod;類方法:classmethod

1、靜態方法:staticmethodclass 一、在Python2.6中,經過一個類調取一個方法(未綁定方法,3.0中已經去掉了),必須手動傳遞一個實例才能調用。例如:方法 class Me:static     def  meth(self,x):ssm         print(x)參數傳遞 X=Me()錯誤 X.meth(2)     #正常調用,顯示 2參數 Me.meth(X,2)
相關文章
相關標籤/搜索