出现问题:添加了
#include <vector>
,但编译器仍然提示vector不是模板。
导读
list和vector在命名空间std里,因此只需要在vector前加std::即可。
<pre class="wp-block-code">```
#include <vector>
vector<int> player;//错误写法
////
std::vector<int> player;//正确写法1
////
using namespace std;//正确写法2
vector<int> player;
欢迎来到Yari的网站:yar2001 » 编译器报错 C++ vector不是模板 list不是模板 的解决方案