运算符重载(作为普通函数)

Posted cnRicky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了运算符重载(作为普通函数)相关的知识,希望对你有一定的参考价值。

运算符重载---基本概念

C++程序设计

郭炜 刘家瑛

 1 #include<iostream>
 2 using namespace std;
 3 class Complex{
 4 public:
 5     double real;
 6     double imaginary;
 7     Complex(double a=0.0,double b=0.0) : real(a),imaginary(b) {}//初始化 
 8     ~Complex(){}
 9     void print(); 
10 };
11 Complex operator+(Complex& a,Complex& b)//运算符重载函数(作为普通函数) 
12     {
13         return Complex(a.real+b.real,a.imaginary+b.imaginary);
14     }
15 void Complex::print()
16 {
17     cout<<real<<"+"<<imaginary<<"i"<<endl; 
18 }
19 int main()
20 {
21     Complex a(3,2),b(5,4),c;
22     c=a+b;
23     c.print();
24     return 0;
25 }

注:重载为普通函数时,参数个数为运算符数目

以上是关于运算符重载(作为普通函数)的主要内容,如果未能解决你的问题,请参考以下文章

重载运算符问题

运算符重载函数作为朋友?

c++运算符重载

C++运算符重载函数作为友元函数

C++运算符重载函数作为友元函数

小于运算符不能作为成员函数重载