RT,在代码中我写下了:
namespace pzj{ #define pzj return #define NB 0 }
此时,我没有写:
using namespace pzj;
但是,我直接调用:
pzj NB
并不会编译报错。请问原因是什么?
code