C++
bianjun1075
这个作者很懒,什么都没留下…
展开
-
强烈推荐一个在线学习C++的网站,非常赞!简单+高效+实用!
网址:http://en.cppreference.com/w/cpp/language/reference为什么点赞:1、在Search栏里输入你需要参考的内容,如lvalue很快就能得到参考内容:2、同时还能看到例子代码:如果只能是看就用不着点赞了,真正点赞的是你可以执行代码(注意上图中的“Run this code”)!3、点击"Run原创 2016-10-23 10:21:35 · 24949 阅读 · 1 评论 -
C++为什么remove以后需要erase
"Why don’t algorithms callerase() by themselves? This question highlights the price of the flexibility of the STL. The STL separates data structures and algorithms by using iterators as the interfac转载 2016-11-13 11:29:34 · 786 阅读 · 0 评论 -
gcc编译选项:c++11 多线程编译
c++11原生支持多线程编程,如下代码(假设文件名为test.cpp):#include #include using namespace std;int main(){ auto fr0 = async([](){cout fr0.get(); return 0;}这个代码要编译过,需要使用命令:g++ -Wall -st原创 2017-01-15 21:46:44 · 9435 阅读 · 0 评论