#include using namespace std;
class person
person(int a, int b) :m_a(a), m_b(b){}
//利用成員函式實現加號運算子過載
/*person operator+(person &p)
*/ int m_a;
int m_b;
};//利用全域性函式實現加號運算子過載
person operator+(person &p1,person &p2)
void test01()
int main()
#include using namespace std;
class person
//試圖利用成員函式做《過載
/*void operator<<(person& p)<<(cout) pclass myinter
//前置++過載
myinter& operator++()
private:
int m_num;
};ostream& operator<<(ostream& cout, myinter& myint)
void test01()
int main()
#define _crt_secure_no_warnings
#includeusing namespace std;
class person
void showage()
~person()
int m_age;
};class smartpoint
//過載->運算子
person * operator->()
//過載 * 運算子
person& operator*()
~smartpoint() }
private:
person * m_person;
};void test01()
int main()
#define _crt_secure_no_warnings
#includeusing namespace std;
//編譯器 預設給乙個類4個函式 預設構造 析構 拷貝構造 (值拷貝) operator= (值拷貝)
class person
//過載 =
person& operator=( const person &p)
this->m_name = new char[strlen(p.m_name) + 1];
strcpy(this->m_name, p.m_name);
this->m_age = p.m_age;
return *this;
} //拷貝構造
person(const person & p)
~person() }
char * m_name;
int m_age;
};void test01()
int main()
運算子過載之過載型別運算子
普通型別 類型別 呼叫對應的只有乙個引數 引數的型別就是這個普通型別 的建構函式 需求 boy boy1 10000 薪資 建構函式boy int boy boy2 rock 姓名 建構函式boy char 普通型別賦值給類型別其實很簡單,就是專門的對這個賦值的型別定義乙個建構函式。編譯器在執行 的...
運算子過載 賦值運算子的過載
有時候希望賦值運算子兩邊的型別可以不匹配,比如,把乙個int型別變數賦值給乙個complex物件,或把乙個 char 型別的字串賦值給乙個字串物件,此時就需要過載賦值運算子 注意 賦值運算子 只能過載為成員函式 賦值運算子過載例項示例 include include using namespace ...
運算子過載
c 中的運算子 1。大多數系統預定義運算子都能過載 不值得過載 不能被過載 2過載不能改變優先順序 不能改變結合性 不能改變運算子所需運算元的個數 過載後,可按這些運算子的表達方式使用 運算子過載的語法 一 通過運算子過載函式進行過載 1。運算子過載函式是成員函式 語法形式 type x opera...