摘要: ''' 重载运算符强化--返回值 ''' # 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') ... 阅读全文
posted @ 2019-08-14 10:23 青春叛逆者 阅读(137) 评论(0) 推荐(0) 编辑
摘要: ''' 重载运算符强化--返回值 ''' # 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') ... 阅读全文
posted @ 2019-08-14 10:15 青春叛逆者 阅读(272) 评论(0) 推荐(0) 编辑
摘要: ''' 重载运算符 ''' # 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... 阅读全文
posted @ 2019-08-14 10:06 青春叛逆者 阅读(90) 评论(0) 推荐(0) 编辑
摘要: ''' 有名对象,匿名对象 ''' 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... 阅读全文
posted @ 2019-08-14 10:05 青春叛逆者 阅读(94) 评论(0) 推荐(0) 编辑
摘要: ''' 有名对象,匿名对象 ''' 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... 阅读全文
posted @ 2019-08-14 10:05 青春叛逆者 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-08-14 09:53 青春叛逆者 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 通过创建一个空类,来验证动态创建属性 阅读全文
posted @ 2019-08-14 09:40 青春叛逆者 阅读(88) 评论(0) 推荐(0) 编辑
摘要: #面向过程函数方式实现代码重用 #面向对象不仅可以函数方式实现代码重用,还可以实现数据重用 阅读全文
posted @ 2019-08-14 09:01 青春叛逆者 阅读(121) 评论(0) 推荐(0) 编辑