TA的每日心情 | 擦汗 8 分钟前 |
---|
签到天数: 527 天 连续签到: 4 天 [LV.9]测试副司令
|
1测试积点
问题:
python两个类如何相互调用方法?
如图项目中有两个文件,每个文件中代码如下:
- <font face="微软雅黑" size="3">test1:
- __author__ = 'dage'
- from test2 import *
- class Test1(object):
- print ('hello world!')
- print('hello!')
- def result(self):
- t2 = Test2()
- cc = t2.addnumber(2, 3)
- print (cc)
- t1 = Test1()
- t1.result()
- test2:
- class Test2(object):
- print (u'链接手机并安装执行位置的!')
- def addnumber(self,a,b):
- c = a + b
- return c
- def printt(self):
- print ('hi')
- if __name__ == '__main__':
- s = Test2()
- s.printt()
- </font>
复制代码
类:class Test1(object):
可以写成:class Test1:
还可以写成:class Test1(父类):
调用类方法:
1、import 引入
2、实例化 tt = Test1()
3、调用:tt.addnumber()
addnumber(self,a,b) 调用的时候,不需要考虑self
|
|