class A:
dict_1 = 456
def __init__(self):
self.dict_1 = 'abcdsafdsf' #当增加@staticmethod 时为类方法
@staticmethod
def edf():
print '\nstatic method edf' #为实例方法 a = A() self代表a
def abc(self):
print '\ninstance method abc'
print(self.dict_1) a = A()
print(a.dict_1)
a.abc()
print type(a)
A.edf()
print type(A)
相关文章
- python 类的使用实例方法
- 使用Python打造高效的PDF文件管理应用(合并以及分割)-技术选型
- 如何解决 java.lang.NoClassDefFoundError: 找不到类定义错误?亲测有效的解决方法!
- Linq to Entities下存储过程的使用方法
- Nest客户端的基本使用方法
- Sentry日志管理thinkphp8 tp8 sentry9 sentry8 php8.x配置步骤, tp8自定义异常处理类使用方法
- 使用VisualStudio开发php的图文设置方法
- uniapp项目实践总结(三)全局公共组件和样式以及方法的使用
- 【Python】 使用Selenium获取网页表格的方法(find_element的方法)
- python下使用tesserocr遇到的一些坑