Domanda

Sto usando un decoratore di classe ma non ho capito come attributo setttr, questo è il mio codice:

def cldecor(*par):
    def onDecorator(aClass):
        class wrapper:
            def __init__(self, *args): 
                self.wrapped = aClass(*args)
            def __getattr__(self, name): 
                return getattr(self.wrapped, name)
            def __setattr__(self, attribute, value): 
                if attribute == 'wrapped': 
                    self.__dict__[attribute] = value 
                else:
                    setattr(self.wrapped, attribute, value)
        return wrapper
    return onDecorator


@cldecor('data','size')
class Doubler:
    def __init__(self,label,start):
        self.label = label
        self.data = start

    def display(self):
        print('{0} => {1}'.format(self.label, self.data))

ma quando lo faccio:

if __name__ == "__main__":
    X = Doubler('X is ', [1,2,3])
    X.xxx = [3,4,9]
    print(X.xxx)
    X.display()

Ho questo output:

[3, 4, 9]
X is  => [1, 2, 3]

Come posso fare per avere questo output?

[3, 4, 9]
X is  => [3, 4, 9] 

Nessuna soluzione corretta

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top