class Chain(object):
def __init__(self,path=""):
self._path = path
def __getattr__(self,path):
return Chain("%s/%s" %(self._path,path))
def __call__(self,path):
return Chain("%s/%s" %(self._path,path))
def __str__(self):
return self._path
__repr__ = __str__
print(Chain().a.b.user("Michael").c.d)
看了好久还是理解不了这语句,如能详述一些细节,感激不尽
getattr(objet, nom[, par défaut])
_getattr__ est une fonction intégrée à Python, qui renvoie dynamiquement un attribut
Lors de l'appel d'un attribut inexistant, Python essaiera d'appeler __getattr__(self,'score') pour obtenir l'attribut et renvoyer le score
__str__ est utilisé pour imprimer des fonctions
__call__ appelle la classe comme une fonction similaire
Flux d'exécution du code :
Chain() crée une instance et le chemin est initialement par défaut "". Lorsque Chain().a, il n'y a pas d'attribut dans la classe et l'analyseur Python appelle la fonction getattr. --> __getattr__ (self,path='a'),
et renvoie une instance de chaîne, puis passe /a assign gei path in, continue b, car il n'y a pas d'attribut b, exécute la fonction getattr, passe / a/b in,
Ensuite, .user("Michael") exécutera d'abord getattr pour renvoyer l'instance de Chain, mais comme il y a des crochets (), Chain() est renvoyé
Cela appellera la fonction d'appel, puis " ChenTian " est transmis comme chemin, puis la fonction d'appel renvoie /a/b/user/ChenTian, et le reste est similaire.
Organigramme du code