温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

模板类的友员函数

发布时间:2020-07-06 12:21:22 来源:网络 阅读:368 作者:神迹难觅 栏目:编程语言

#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