中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

模板類的友員函數

發布時間:2020-07-06 12:21:22 來源:網絡 閱讀:377 作者:神跡難覓 欄目:編程語言

#include<iostream>

using namespace std;

template<class T>

class Complex{

public:

Complex(T a, T b);

void setComplex(T a,T b);

friend Complex<T> operator+(const Complex<T> &c1, const Complex<T> &c2){

//對于模板類的友員函數一定要寫在類內!!!不可以再類外實現

T p_w_picpath = c1.p_w_picpath + c2.p_w_picpath;

T real = c1.real + c2.real;

return Complex<T>(real,p_w_picpath);

//這個必須按照這樣寫,不能加個對象!因為類型不確定!

}

friend Complex<T>operator-(const Complex<T> &c1, const Complex<T> &c2){

T p_w_picpath = c1.p_w_picpath - c2.p_w_picpath;

T real = c1.real - c2.real;

return Complex<T>(real,p_w_picpath);

}

friend Complex<T> operator-(const Complex &c1){

return Complex<T> (-c1.real, -c1.p_w_picpath);

}

void print()const;

private:

T real, p_w_picpath;

};

template <class T>

Complex<T>::Complex(T a, T b){

setComplex(a, b);

}

template<class T>

void Complex<T>::print()const{

cout << "real=" << real << "p_w_picpath=" << p_w_picpath << endl;

}

template <class T>

void Complex<T>::setComplex(T a, T b){

real = a;

p_w_picpath = b;

}


int main(){

Complex<int> a(2, 3);

Complex<int> b(2, 4);

(a + b).print();

(a - b).print();

(-a).print();

system("pause");

return 0;

}


向AI問一下細節

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

AI

自治县| 永春县| 常德市| 墨玉县| 且末县| 滨州市| 琼中| 五莲县| 张北县| 城固县| 丰县| 邵阳县| 那曲县| 徐汇区| 河南省| 盐边县| 离岛区| 斗六市| 榆社县| 延庆县| 吴桥县| 罗城| 故城县| 广宗县| 民和| 嘉善县| 江华| 榆林市| 柘城县| 大石桥市| 休宁县| 阿合奇县| 中江县| 乐平市| 精河县| 齐河县| 泸水县| 霞浦县| 清远市| 申扎县| 清水河县|