类的方法的调用:
与普通的函数调用类似
1、类的内部调用:self.(参数列表)。
2、在类的外部调用:.(参数列表)。
注意:以上两种调用方法中,提供的参数列表中都不用包括self。
演示一个类:wash.py
class Washer:
def __init__(self):
self.water = 0
self.scour = 0
def add_water(self,water):
print('Add water:',water)
self.water = water
def add_scour(self,scour):
self.scour = scour
print('Add scour:',self.scour)
def start_wash(self):
print('Start wash...')
if __name__ == '__main__':
w = Washer()
w.add_water(10)
w.add_scour(2)
w.start_wash()
运行结果:
更多Python相关技术文章,请访问Python教程栏目进行学习!
本文地址:http://itbyc.com/Python/22374.html
转载请注明出处。
本文链接:https://my.lmcjl.com/post/5520.html
展开阅读全文
4 评论