真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

模板類的友員函數(shù)

#include

創(chuàng)新互聯(lián)是專業(yè)的橋西網(wǎng)站建設(shè)公司,橋西接單;提供成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行橋西網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊,希望更多企業(yè)前來合作!

using namespace std;

template

class Complex{

public:

Complex(T a, T b);

void setComplex(T a,T b);

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

//對于模板類的友員函數(shù)一定要寫在類內(nèi)?。?!不可以再類外實(shí)現(xiàn)

T p_w_picpath = c1.p_w_picpath + c2.p_w_picpath;

T real = c1.real + c2.real;

return Complex(real,p_w_picpath);

//這個必須按照這樣寫,不能加個對象!因?yàn)轭愋筒淮_定!

}

friend Complexoperator-(const Complex &c1, const Complex &c2){

T p_w_picpath = c1.p_w_picpath - c2.p_w_picpath;

T real = c1.real - c2.real;

return Complex(real,p_w_picpath);

}

friend Complex operator-(const Complex &c1){

return Complex (-c1.real, -c1.p_w_picpath);

}

void print()const;

private:

T real, p_w_picpath;

};

template

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

setComplex(a, b);

}

template

void Complex::print()const{

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

}

template

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

real = a;

p_w_picpath = b;

}

int main(){

Complex a(2, 3);

Complex b(2, 4);

(a + b).print();

(a - b).print();

(-a).print();

system("pause");

return 0;

}


網(wǎng)頁標(biāo)題:模板類的友員函數(shù)
標(biāo)題網(wǎng)址:http://weahome.cn/article/pgpcih.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部