一.基本運算子過載
1.不能過載的運算子:. :: ?: sizeof
2.返回值型別 operator+(){}
3.因為這個運算子過載是在類中,this指標要佔乙個引數
4."+"過載
int
operator+(
)int
operator+(
const student&stu)};
intmain()
}
5."*"過載 功能是輸出一句話
void
operator*(
)*stu1;
4.顯示呼叫:int c=stu1.operator+(stu2);
二.前後++過載
1.前置++過載
student&
operator++(
) student stu;
++stu;
2.後置++過載
student operator++(
int)
student stu1;
stu1++
;
如果有指標,需要寫拷貝構造
三.左移右移過載
在類外過載
#include
using
namespace std;
class
student
friend ostream&
operator
<<
(ostream &cout,student &stu)
;friend istream&
operator
>>
(istream &cin, student &stu);}
;ostream&
operator
<<
(ostream &cout, student &stu)
istream&
operator
>>
(istream&cin, student &stu)
intmain()
四."="過載
1.過載"="
#include
using
namespace std;
class
student
~student()
} student&
operator
=(student& stu)
this
->name =
newchar
[strlen
(stu.name)+1
];strcpy
(this
->name, stu.name)
;return
*this;}
};intmain()
2.過載()
void
operator()
(int a,
int b,
int c)
void
operator()
()stu1(1
,2,3
);stu1()
;
五.智慧型指標
*作用:*用來託管new出來的物件,讓物件自動釋放。
#include
using
namespace std;
class
student
~student()
void
fun()}
;class
smartpointer
~smartpointer()
} student*
operator
->()
student&
operator*(
) student&
operator
(int a)};
void
text()
intmain()
運算子過載之過載型別運算子
普通型別 類型別 呼叫對應的只有乙個引數 引數的型別就是這個普通型別 的建構函式 需求 boy boy1 10000 薪資 建構函式boy int boy boy2 rock 姓名 建構函式boy char 普通型別賦值給類型別其實很簡單,就是專門的對這個賦值的型別定義乙個建構函式。編譯器在執行 的...
運算子過載 賦值運算子的過載
有時候希望賦值運算子兩邊的型別可以不匹配,比如,把乙個int型別變數賦值給乙個complex物件,或把乙個 char 型別的字串賦值給乙個字串物件,此時就需要過載賦值運算子 注意 賦值運算子 只能過載為成員函式 賦值運算子過載例項示例 include include using namespace ...
運算子過載
c 中的運算子 1。大多數系統預定義運算子都能過載 不值得過載 不能被過載 2過載不能改變優先順序 不能改變結合性 不能改變運算子所需運算元的個數 過載後,可按這些運算子的表達方式使用 運算子過載的語法 一 通過運算子過載函式進行過載 1。運算子過載函式是成員函式 語法形式 type x opera...