Loading

摘要: C语言编译 gcc -o test test.c C++编译 g++ -o test test.cpp 注:如需使用C++11标准,则可以加上 -std=c++11 // Cgcc -std=c++11 -o test test.c // C++g++ -std=c++11 -o test test 阅读全文
posted @ 2021-06-11 16:36 _yhwu 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 在实验中要用到C11标准中的<std::future>异步执行,编译时出现如下错误 .\Dev-Cpp\MinGW64\lib\gcc\x86_64-w64-mingw32\4.9.2\include\c++\bits\c++0x_warning.h [Error] #error This file 阅读全文
posted @ 2021-06-11 16:31 _yhwu 阅读(2285) 评论(0) 推荐(0) 编辑