如何在c++項目中移動構(gòu)造?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
創(chuàng)新互聯(lián)是一家專注于網(wǎng)站建設(shè)、網(wǎng)站制作與策劃設(shè)計,河北網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:河北等地區(qū)。河北做網(wǎng)站價格咨詢:028-86922220移動構(gòu)造
什么時候該觸發(fā)移動構(gòu)造?
有可被利用的臨時對象
移動構(gòu)造函數(shù):
class_name ( class_name && )
//例:函數(shù)返回含有指針成員的對象(版本1) //使用深層復(fù)制構(gòu)造函數(shù) //返回時構(gòu)造臨時對象,動態(tài)分配將臨時對象返回到主調(diào)函數(shù),然后刪除臨時對象。 #includeusing namespace std; class IntNum { public: IntNum(int x = 0) : xptr(new int(x)){ //構(gòu)造函數(shù) cout << "Calling constructor..." << endl; } IntNum(const IntNum & n) : xptr(new int(*n.xptr)){//復(fù)制構(gòu)造函數(shù) cout << "Calling copy constructor..." << endl; }; ~IntNum(){ //析構(gòu)函數(shù) delete xptr; cout << "Destructing..." << endl; } int getInt() { return *xptr; } private: int *xptr; }; //返回值為IntNum類對象 IntNum getNum() { IntNum a; return a; } int main() { cout< //例:函數(shù)返回含有指針成員的對象(版本2) //使用移動構(gòu)造函數(shù) //將要返回的局部對象轉(zhuǎn)移到主調(diào)函數(shù),省去了構(gòu)造和刪除臨時對象的過程。 #includeusing namespace std; class IntNum { public: IntNum(int x = 0) : xptr(new int(x)){ //構(gòu)造函數(shù) cout << "Calling constructor..." << endl; } IntNum(const IntNum & n) : xptr(new int(*n.xptr)){//復(fù)制構(gòu)造函數(shù) cout << "Calling copy constructor..." << endl; //注: //?&&是右值引用 //?函數(shù)返回的臨時變量是右值 } IntNum(IntNum && n): xptr( n.xptr){ //移動構(gòu)造函數(shù) n.xptr = nullptr; cout << "Calling move constructor..." << endl; } ~IntNum(){ //析構(gòu)函數(shù) delete xptr; cout << "Destructing..." << endl; } private: int *xptr; }; //返回值為IntNum類對象 IntNum getNum() { IntNum a; return a; } int main() { cout << getNum().getInt() << endl; return 0; } //運(yùn)行結(jié)果: Calling constructor... Calling move constructor... Destructing... 0 Destructing... 看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,的支持。
文章名稱:如何在c++項目中移動構(gòu)造-創(chuàng)新互聯(lián)
當(dāng)前鏈接:http://weahome.cn/article/jhdjp.html