C++ - Identifier not found
时间:2014-05-15 04:52:19
收藏:0
阅读:211
This is because forward declaration in C++: Compiler needs to know function prototype when function call is compiled. So, you need declare the called function first or place the called function before the calling
function.
评论(0)