模板类的友员函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模板类的友员函数相关的知识,希望对你有一定的参考价值。

#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 image = c1.image + c2.image;

T real = c1.real + c2.real;

return Complex<T>(real,image);

//这个必须按照这样写,不能加个对象!因为类型不确定!

}

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

T image = c1.image - c2.image;

T real = c1.real - c2.real;

return Complex<T>(real,image);

}

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

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

}

void print()const;

private:

T real, image;

};

template <class T>

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

setComplex(a, b);

}

template<class T>

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

cout << "real=" << real << "image=" << image << endl;

}

template <class T>

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

real = a;

image = 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;

}


以上是关于模板类的友员函数的主要内容,如果未能解决你的问题,请参考以下文章

将派生类的构造函数声明为父类的友元

模板类中的友元函数

C++中用new开辟一个对象后怎么给其私有数据成员赋值

模板实现顺序表

MFC 如何在一个类中使用另一个类中定义的变量

类与类之间的友元关系可以继承吗? 友元函数是类的成员函数吗?