C++ 能夠使用流提取運算符 和流插入運算符 和插入運算符 using namespace std; class Person{ public: Person(const char str) : name(str){} int GetAge(){ return this age; } / 聲明為類的 ...
C++ 能夠使用流提取運算符 >> 和流插入運算符 << 來輸入和輸出內置的數據類型。我們可以重載流提取運算符和流插入運算符來操作對象等用戶自定義的數據類型。
在這裡,有一點很重要,我們需要把運算符重載函數聲明為類的友元函數,這樣我們就能不用創建對象而直接調用函數。
下麵的實例演示瞭如何重載提取運算符 >> 和插入運算符 <<。
#include <iostream>
using namespace std;
class Person{
public:
Person(const char *str) : name(str){}
int GetAge(){
return this->age;
}
/* 聲明為類的友元函數 */
friend ostream& operator<<(ostream& output, Person &p){
output << p.name << endl;
return output;
}
friend istream& operator>>(istream& input, Person &p){
input >> p.age;
return input;
}
private:
const char *name;
int age;
};
int main()
{
Person p("Tom");
/* 重載輸出名字 */
cout << p;
/* 重載輸入年齡 */
cin >> p;
/* 輸出年齡 */
cout << p.GetAge() << endl;
return 0;
}