在线二区人妖系列_国产亚洲欧美日韩在线一区_国产一级婬片视频免费看_精品少妇一区二区三区在线

鍍金池/ 問答/Python/ python3 中object.__init__() takes no para

python3 中object.__init__() takes no parameters 報錯問題

初學python

代碼如下:

class IntTuple(tuple):


def __new__(cls, iterable):
    g = (x for x in iterable if isinstance(x,int) and x > 0)
    return super(IntTuple, cls).__new__(cls, g)


def __init__(self, iterable):
    super(IntTuple, self).__init__(iterable)

    

t = IntTuple([1,-1,'abc',6,['x','y'],3])
print(t)

為什么在不實現(xiàn)__init__方法時無報錯,而以上代碼會出現(xiàn)錯誤?
忘解答

回答
編輯回答
不二心
import inspect
class IntTuple(tuple):
    def __new__(cls, iterable):
        g = (x for x in iterable if isinstance(x,int) and x > 0)
        return super(IntTuple, cls).__new__(cls, g)
    def __init__(self, iterable):
        print(inspect.getargspec(super(IntTuple, self).__init__))    # 打印父類的__init__ 
        # ArgSpec(args=['self'], varargs='args', keywords='kwargs', defaults=None)
        print(iterable)

t = IntTuple([1,-1,'abc',6,['x','y'],3])
print(inspect.getargspec(t.__init__))    # 打印你自己定義的__init__
# ArgSpec(args=['self', 'iterable'], varargs=None, keywords=None, defaults=None)

你會發(fā)現(xiàn)tuple父類的__init__根本沒有參數(shù)傳遞,從報的錯誤可以看出,tuple沒有實現(xiàn)__init__魔術方法,而是直接繼承的object。從傳遞的參數(shù)也可以看出來,iterable還是那個沒處理的,而不是從__new__里傳遞過來的g

2018年8月14日 17:16