首页 > 代码库 > C++ - Identifier not found

C++ - Identifier not found


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.