python的函数定义和调用

巴扎黑
巴扎黑 原创
2016-12-08 10:26:58 1199浏览

Forward declaration
http://en.wikipedia.org/wiki/Forward_declaration

everything has to be defined before you call it


This is exactly the same as in C/C++" Well no it is isn't at all really. You can have a forward definition of a function in C but you cannot in Python. You can have run-time checking of functions in Python but cannot in C. You can have implicit prototypes in C and that is similar.


所以,python只能先定义后调用。

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。