码迷,mamicode.com
首页 > 编程语言 > 详细

Python3基础 两个类的实例相互加减 重写类的运算 __add__ __sub__ 方法

时间:2017-01-20 23:23:20      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:use   logs   实例   python版本   __add__   init   3.5   elf   tor   

 镇场诗:
    诚听如来语,顿舍世间名与利。愿做地藏徒,广演是经阎浮提。
    愿尽吾所学,成就一良心博客。愿诸后来人,重现智慧清净体。
——————————————————————————————————————————

code:

class MyClass :
    def __init__(self,long,weight):
        self.long=long
        self.weight=weight
    #两个对象的长相加,宽不变.返回一个新的类
    def __add__(self,others) :
        return MyClass( self.long+others.long,self.weight+others.weight)

    #两个对象的宽相减,长不变.返回一个新的类
    def __sub__(self,others) :
        return MyClass(self.long-others.long,self.weight-others.weight)
    #说一下自己的参数
    def intro(self):
        print("长为",self.long," 宽为",self.weight)

a=MyClass(10,5)
a.intro()

b=MyClass(20,10)
b.intro()

c=b-a
c.intro()

d=a+b
d.intro()

 


result:

============= RESTART: C:\Users\Administrator\Desktop\myCode.py =============
长为 10  宽为 5
长为 20  宽为 10
长为 10  宽为 5
长为 30  宽为 15
>>> 

 


——————————————————————————————————————————
博文的精髓,在技术部分,更在镇场一诗。Python版本3.5,系统 Windows7。
Python是优秀的语言,值得努力学习。我是跟着小甲鱼视频教程学习的,推荐。
我是一个新手,所以如果博文的内容有可以改进的地方,甚至有错误的地方,请留下评论,我一定努力改正,争取成就一个良心博客。
注:此文仅作为科研学习,如果我无意中侵犯了您的权益,请务必及时告知,我会做出改正。

Python3基础 两个类的实例相互加减 重写类的运算 __add__ __sub__ 方法

标签:use   logs   实例   python版本   __add__   init   3.5   elf   tor   

原文地址:http://www.cnblogs.com/jinlingzi/p/6329513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!