namespace T{ int t1(); bool t2(); } using声明:每个仅引入一个名称。 using T::t1; using T::t2; using指令: 允许使用命名空间T内的所有名称 using namespace T;