摘要:
''' 重载运算符强化--返回值 ''' # print(1+2)#不同的类型有不同的解释 # print('1'+'2') class complex: def __init__(self,x,y): self.x=x self.y=y def show(self): print(self.x,'+',self.y,'i') ... 阅读全文
摘要:
''' 重载运算符强化--返回值 ''' # print(1+2)#不同的类型有不同的解释 # print('1'+'2') class complex: def __init__(self,x,y): self.x=x self.y=y def show(self): print(self.x,'+',self.y,'i') ... 阅读全文
摘要:
''' 重载运算符 ''' # print(1+2)#不同的类型有不同的解释 # print('1'+'2') class complex: def __init__(self,x,y): self.x=x self.y=y def show(self): print(self.x,'+',self.y,'i') def... 阅读全文
摘要:
''' 有名对象,匿名对象 ''' class complex: def __init__(self,x,y): self.x=x self.y=y def show(self): print(self.x,'+',self.y,'i') c1=complex(1,2) c1.show() complex(1,2).sho... 阅读全文
摘要:
''' 有名对象,匿名对象 ''' class complex: def __init__(self,x,y): self.x=x self.y=y def show(self): print(self.x,'+',self.y,'i') c1=complex(1,2) c1.show() complex(1,2).sho... 阅读全文
摘要:
阅读全文
摘要:
通过创建一个空类,来验证动态创建属性 阅读全文
摘要:
#面向过程函数方式实现代码重用 #面向对象不仅可以函数方式实现代码重用,还可以实现数据重用 阅读全文