yandyand

导航

2020年7月13日 #

运算符重载

摘要: # :运算符重载class person: def __init__(self,num): self.num = num def __add__(self, other): #:调用了__add__运算符 含义为进行"+"法运算 return person(self.num + other.num) 阅读全文

posted @ 2020-07-13 00:06 yandyand 阅读(154) 评论(0) 推荐(0)