类的特殊成员

Posted amber-liu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类的特殊成员相关的知识,希望对你有一定的参考价值。

class Foo:
    def __init__(self,a,b):
        print(我是第二部,初始化数据)
        self.a=a
        self.b=b
    def __call__(self, *args, **kwargs):
        return args,kwargs
    def __getitem__(self, item):
        return item
    def __setitem__(self, key, value):
        print(key,value)
    def __delitem__(self, key):
        print(key)
    def __add__(self, other):
        return self.a+other.b
    def __enter__(self):
        print(hollo)
    def __exit__(self, exc_type, exc_val, exc_tb):
        print(get out)
    def __new__(cls, *args, **kwargs):
        print(先执行的是我,创建空对象)
        return object.__new__(cls)
obj=Foo(1,100)
print(obj(1,2,3,lyd=1000000))
print(obj[666])
obj[666]=very_good
del obj[666]
obj2=Foo(-1,-100)
print(obj+obj2)
with obj as f:
    print(我轻轻的走来)
    print(不带走一片云彩)
‘‘‘

 

以上是关于类的特殊成员的主要内容,如果未能解决你的问题,请参考以下文章

Python学习:17.Python面向对象(属性(特性),成员修饰符,类的特殊成员)

面向对象day08:类的特殊成员-类的起源与metaclass

类的特殊成员

Python面向对象--类的特殊成员方法

Python 类的特殊成员方法

Python基础到进阶类的特殊成员(__xxx__)