“Python”的版本间的差异
跳到导航
跳到搜索
(建立内容为“== 外部链接 == * [https://www.python.org/ 主页] * [https://docs.python.org/ 文档] Category:Python”的新页面) |
|||
第1行: | 第1行: | ||
+ | == 例子 == | ||
+ | |||
+ | === 类的静态方法 === | ||
+ | |||
+ | <syntaxhighlight lang=python> | ||
+ | class Example: | ||
+ | @classmethod | ||
+ | def load(cls, filepath): | ||
+ | obj = cls.__new__(cls) | ||
+ | obj.foo = somefunc(filepath) | ||
+ | return obj | ||
+ | </syntaxhighlight> | ||
+ | |||
== 外部链接 == | == 外部链接 == | ||