1
xiandao7997 Jan 2, 2015 via Android
不懂 decorator, 不过 lz 的问题可以搜索 decorator site:python.org :)
另,找到一个教程, http://www.cnblogs.com/vamei/archive/2012/09/13/2682778.html |
2
binux Jan 2, 2015
https://docs.python.org/2/reference/compound_stmts.html#function-definitions
你还要多详细,本来就没多少东西,就一语法糖 |
3
yourmoonlight Jan 3, 2015
|
4
zonyitoo Jan 3, 2015
decorator就是一个语法糖来的而已呀
|
5
yourmoonlight Jan 3, 2015
python decorators are equated to macros.
the goal of macros is to provide a way to modify elements of the language. that's what decorators do in python, they modify functions, in the case of class decorators, entire classes. |
6
rcmerci Jan 3, 2015 的确只是语法糖而已,nothing more
|
7
HxSeek OP 原来如此··小白就此谢过大家的回复啦··
|
8
clvrobj Jan 3, 2015
虽然lz已经原来如此了,还是留下个觉得有用的链接 https://www.python.org/dev/peps/pep-0318/
|