亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

copy_constructor 復制構造函數

發布時間:2020-08-12 20:03:22 來源:網絡 閱讀:288 作者:神跡難覓 欄目:編程語言

有三種情況會產生復制構造函數的調用!

在代碼中只要產生臨時對象都會調用復制構造函數

在代碼中顯示

#include<iostream>

using namespace std;

class Location{

public:

Location(int a, int b){ x = a; y = b; }

Location( const Location& lc){

cout << "call copy_constructor" << endl;

x = lc.getx();//這里必須把getx()設為常量函數才可以被調用

y = lc.y;

}

~Location(){

cout << "object destroyed" << endl;

}

int getx()const{//只有定義為常函數才可以被常量對象使用

return x;

}

int gety()const{

return y;

}

void setx(int a){ x = a; }

void sety(int b){ y = b; }

private:

int x, y;

};

void f(Location p){//1.這里會產生調用復制構造函數!因為需要產生臨時對象

p.setx(5); 

p.sety(6);

cout << "x=" << p.getx() << " y=" << p.gety() << endl;

}

Location g(){//2.這里會產生調用復制構造函數

Location p(4, 5);

return p;

}

Location& h(){//這里是引用所以不產生臨時對象,所以不調用復制構造函數

cout << "h()" << endl;

Location p(4, 6);

return p;

}

void func(){

Location location1(2, 3);

Location location2 = location1;//3.這里也產生調用復制構造函數


cout << "location.x=" << location2.getx() << endl;

cout << "location.y=" << location2.gety() << endl;

f(location2);

cout << "location.y=" << location2.gety() << endl;

location2 = g();

cout << "location.y=" << location2.gety() << endl;

location2 = h();

}

int main(){

func();//作用是使得所有的對象都可以析構!

system("pause");

return 0;

}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

霍林郭勒市| 当雄县| 峨眉山市| 绥芬河市| 兴城市| 岳西县| 兴海县| 康定县| 祁阳县| 泾川县| 阳山县| 旌德县| 元阳县| 铁岭市| 若尔盖县| 晋江市| 镇坪县| 望江县| 武鸣县| 靖宇县| 修武县| 西昌市| 海晏县| 凤山市| 乌苏市| 永平县| 合山市| 黔江区| 金寨县| 永嘉县| 温宿县| 安宁市| 桃江县| 阳谷县| 南昌县| 丘北县| 霍邱县| 沙湾县| 郎溪县| 墨竹工卡县| 仁布县|