python 定义class时的内置方法

Posted 庭明

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 定义class时的内置方法相关的知识,希望对你有一定的参考价值。

__contains__():对类实例使用in ,not in操作时调用

class A(object):

    def __init__(self,num):

        self.num=num

    def __contains__(self,item):

        print(‘__contains__: %s is in ?‘ % item )

        if item < self.num and item >= 0 :

            return True

        else :

            return False

if __name__==‘__main__‘:

    if 3 in A(10):

        print(‘True‘)

    else:

        print(‘False‘)

输出:

__contains__: 3 is in ?

True

 

__call__():像函数一样调用类实例时使用的方法

class Person(object):

    def __init__(self,name,gender):

        self.name=name

        self.gender=gender

    def __call__(self,friend):

        print(‘My name is %s ...‘ % self.name)

        print(‘My friends is %s ...‘ % friend)

p=Person(‘Bob‘,‘male‘)

p(‘Tim‘)

输出:

My name is Bob ...

My friends is Tim ...

以上是关于python 定义class时的内置方法的主要内容,如果未能解决你的问题,请参考以下文章

Python进阶-----通过类的内置方法__str__和__repr__自定制输出(打印)对象时的字符串信息

python内置方法

Python之路(第二十六篇) 面向对象进阶:内置方法

python内置方法

python数据类型之内置方法

数字类型内置方法