用法:
@abc.abstractstaticmethod
3.2 版中的新函數。
自 3.3 版起已棄用:現在可以使用staticmethod和abc.abstractmethod,使這個裝飾器變得多餘。
內置
staticmethod()
的子類,表示抽象靜態方法。否則它類似於abstractmethod()
。這種特殊情況已被棄用,因為
staticmethod()
裝飾器現在在應用於抽象方法時被正確識別為抽象:class C(ABC): @staticmethod @abstractmethod def my_abstract_staticmethod(arg): ...
相關用法
- Python abc.abstractmethod用法及代碼示例
- Python abc.abstractproperty用法及代碼示例
- Python abc.abstractclassmethod用法及代碼示例
- Python abc.ABCMeta用法及代碼示例
- Python abc.ABC用法及代碼示例
- Python abc.ABCMeta.register用法及代碼示例
- Python abs()用法及代碼示例
- Python ast.MatchClass用法及代碼示例
- Python ast.ListComp用法及代碼示例
- Python ast.Lambda用法及代碼示例
- Python asyncio.BaseTransport.get_extra_info用法及代碼示例
- Python ast.IfExp用法及代碼示例
- Python unittest assertNotIsInstance()用法及代碼示例
- Python ast.Return用法及代碼示例
- Python Tkinter askopenfile()用法及代碼示例
- Python ast.Subscript用法及代碼示例
- Python asyncio.shield用法及代碼示例
- Python asyncio.run用法及代碼示例
- Python argparse.ArgumentParser.convert_arg_line_to_args用法及代碼示例
- Python unittest assertIsNotNone()用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 abc.abstractstaticmethod。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。