“@” Decorator (in Python)
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Understanding Python decorators
"class decorator"/"method decorator"(
另外,在方法之前使用
1 2 3 | @decorator def function(args): #body |
只是对以下内容的句法糖分:
1 2 3 4 | def function(args): #body function = decorator(function) |
就是这样。
正如你所看到的,装饰器被调用了,所以它决不是一个注释。