Python魔法方法(22):__le__(self, other)方法

Posted youzhouliu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python魔法方法(22):__le__(self, other)方法相关的知识,希望对你有一定的参考价值。

Python 的对象天生拥有一些神奇的方法,它们总被双下划线所包围,它们是面向对象的 Python 的一切。它们是可以给你的类增加魔力的特殊方法,如果你的对象实现(重载)了某一个魔法方法,那么这个方法就会在特殊的情况下自动被 Python 所调用。

功能

定义小于等于号的行为:x <= y, 相当于 x.__le __(y)。

参数

self 表示小于等于号左边的对象,other 表示小于等于号右边的对象。

返回值

一般返回 False 或 True。

示例

class MyTest(object):
    def __init__(self, age):
        self.age = age

    def __le__(self, other):
        print(f'le use exp.')
        return self.age <= other.age


my_age = MyTest(21)
other_age = MyTest(22)
if my_age <= other_age:
    print('my age le to other age.')

以上是关于Python魔法方法(22):__le__(self, other)方法的主要内容,如果未能解决你的问题,请参考以下文章

Python 魔法方法~~

Python 魔法方法

Python – 魔法方法

python魔法方法

Python 魔法方法详解

21 python的魔法方法(转)