码迷,mamicode.com
首页 > 其他好文 > 详细

Operator overloading

时间:2014-10-02 22:43:53      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   for   sp   div   2014   

By defining other special methods, you can specify the behavior of operators on user-defined types. For example, if you define add method for the Time class, you can use the + operator on Time objects.

 def __add__(self,time):
        seconds = self.time_to_int() + time.time_to_int()
        return Time.int_to_time(seconds)

bubuko.com,布布扣

When you apply the + operator to Time objects, Python invokes __add__. When you print the result, Python invokes __str__. So there is quite a lot happening behind the scenes. Changing the behavior of an operator so that it works with user-defined types is called operator overloading. For every operator in Python there is a corresponding special method, like __add__.

 

from Thinking in Python

 

Operator overloading

标签:style   blog   http   color   io   for   sp   div   2014   

原文地址:http://www.cnblogs.com/ryansunyu/p/4004431.html

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