【C/C++】C++11新特性:初探右值引用與轉移語義

參考自:右值引用與轉移語義(李勝利)html C++11以前,右值是不能被引用的,最大限度就是用常量引用綁定一個右值,如 :ios const int& a = 1; 爲了與左值引用區分,右值引用 && 表示。以下: 函數 #include <iostream> void fun(int& i) { std::cout << "lvalue:" << i << std::endl; } vo
相關文章
相關標籤/搜索