#include+<bits/stdc++.h>报错
时间: 2023-11-22 09:06:07 浏览: 181
<bits/stdc++.h>
当使用 #include <bits/stdc++.h> 时,如果出现报错 error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token|1,通常是因为编译器不支持该头文件或者编译器版本过低。这个头文件是 GNU C++ 标准库的一个扩展,包含了大部分常用的标准库头文件,因此可以方便地使用标准库中的函数和类。如果你的编译器不支持该头文件,可以使用具体的标准库头文件来代替。例如,如果你需要使用 vector,可以使用 #include <vector> 来代替 #include <bits/stdc++.h>。
阅读全文