Pau*_*cks 2 c++ namespaces header
在C++中,我有一个文件A.cpp,其中包含以下内容:
namespace Foo {
bool Bar()
{
return true;
}
}
Run Code Online (Sandbox Code Playgroud)
我怎么在Ah中声明这个功能?我如何处理命名空间?
namespace Foo {
bool Bar();
}
Run Code Online (Sandbox Code Playgroud)