c 運算子過載

2021-05-28 05:25:09 字數 1212 閱讀 6039

complex.h

#ifndef _complex_h_

#define _complex_h_

#include using namespace std;

class complex;

complex operator+(const complex c);

complex operator-(const complex c);

complex& operator--();//字首

complex operator--(int);//字尾

operator int();//只能是成員函式 不必寫返回值型別 無形參 強制型別轉換

protected:

private:

int a;

int b;

};#endif

/*不能過載的運算子只有5個:類屬關係運算子「.」,成員指標運算子「*」,作用域分辨符「::」,sizeof運算子和三目運算子「?:」*/

complex.cpp

#include "complex.h"

ostream& operator<<(ostream& out,const complex& c)

complex complex::operator +(const complex c)

complex complex::operator -(const complex c)

complex operator*(const complex c1,const complex c2)

complex operator/(const complex c1,const complex c2)

complex& operator++(complex&c)

complex& complex::operator --()

complex operator++(complex&c,int)

complex complex::operator --(int)

complex::operator int()

main.cpp

#include "complex.h"

#include using namespace std;

int main(){

cout<<"hello world!"<>cc;

cout<<"cc="<

C 運算子過載 過載特殊運算子

賦值運算子用於同類物件間的相互賦值。賦值運算子只能被過載為類的非靜態成員函式,不能過載為友元函式和普通函式。對於使用者自定義的類而言,如果沒有過載賦值運算子,那麼c 編譯器會為該類提供乙個預設的過載賦值運算子成員函式。預設賦值運算子的工作方式是按位對拷,將等到右邊物件的非靜態成員拷貝給等號左邊的物件...

C 運算子過載賦值運算子

自定義類的賦值運算子過載函式的作用與內建賦值運算子的作用類似,但是要要注意的是,它與拷貝建構函式與析構函式一樣,要注意深拷貝淺拷貝的問題,在沒有深拷貝淺拷貝的情況下,如果沒有指定預設的賦值運算子過載函式,那麼系統將會自動提供乙個賦值運算子過載函式。賦值運算子過載函式的定義與其它運算子過載函式的定義是...

C 運算子過載轉換運算子

為什麼需要轉換運算子?大家知道對於內建型別的資料我們可以通過強制轉換符的使用來轉換資料,例如 int 2.1f 自定義類也是型別,那麼自定義類的物件在很多情況下也需要支援此操作,c 提供了轉換運算子過載函式 它使得自定義類物件的強轉換成為可能。轉換運算子的生命方式比較特別,方法如下 operator...