error This file requires compiler and library support for the \ ISO C++ 2011 standard. This support is currently experimental, and must be \ enabled with the -std=c++11 or -std=gnu++11 compiler options.
时间: 2024-01-29 16:17:09 浏览: 317
Ubuntu18.04安装opencv出现的一系列问题解决方法(持续更新~)
5星 · 资源好评率100%
这个错误提示表示你的代码中使用了C++11标准的语法,但是编译器没有开启对C++11的支持。解决这个问题的方法是在编译命令中添加"-std=c++11"或"-std=gnu++11"选项,以开启C++11的支持。
例如,在使用g++编译器编译代码时,应该这样写:
```
g++ -std=c++11 your_file_name.cpp -o output_file_name
```
如果你使用的是其他编译器,可以查阅对应编译器的文档,了解如何开启C++11的支持。
阅读全文