-
-
-
-
C++中的移动构造函数及move语句示例详解
前言
本文主要给大家介绍了关于C++中移动构造函数及move语句的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的 ... <vector>
using namespace std;
int main()
{
string st = I love xing;
vector<string> vc ;
vc.push_back(move(st));
cout<<vc[0]<<endl;
if(!st.empty(
-
-
-
-
-
-
-
-