码迷,mamicode.com
首页 > 编程语言 > 详细

Python3 中类的静态方法、普通方法、类方法

时间:2019-10-13 20:32:19      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:str   pre   method   对象   方法   class   title   name   需要   

Python3 中类的静态方法、普通方法、类方法

静态方法: 用 @staticmethod 装饰的不带 self 参数的方法叫做静态方法,类的静态方法可以没有参数,可以直接使用类名调用。

普通方法: 默认有个self参数,且只能被对象调用。

类方法: 默认有个 cls 参数,可以被类和对象调用,需要加上 @classmethod 装饰器。

 1 class Classname:
 2     @staticmethod
 3     def fun():
 4         print(静态方法)
 5 
 6     @classmethod
 7     def a(cls):
 8         print(类方法)
 9 
10     # 普通方法
11     def b(self):
12         print(普通方法)
13 
14 
15 
16 Classname.fun()
17 Classname.a()
18 
19 
20 C = Classname()
21 C.fun()
22 C.a()
23 C.b()

 

Python3 中类的静态方法、普通方法、类方法

标签:str   pre   method   对象   方法   class   title   name   需要   

原文地址:https://www.cnblogs.com/wind666/p/11668126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!