使用同一命名空间中的函数查询函数。如何调用该函数?它似乎一直在给我错误。
例如:
// in the .h files
namespace helper{
void helper1();
void helper2();
}
// in the cpp files
namespace helper{
void helper1() {
// blah blah blah
}
void helper2() {
// blah blah blah
helper1(); // return some results from helper1
}
}
上面的代码给了我错误结果,说它找不到helper1
函数。有什么我做错了吗?
谢谢你的帮助!