怎么引用命名空间啊
我想引用set 直接引用 比如set<int>
可是set 在 std::__1的命名空间里
无论我使用using namespace std;或者using namespace std::__1; 都不让我直接使用set<int>
每次必须这样用 我看的输入 那个std::__1::
std::__1::set<int>
[解决办法]
set 在 std 里
#include <set>
using namespace std;
后就能够直接使用 set 了。