哎!~~自己不用功,卻只會怪老師沒有教好
我無師自通,自己看書也不會怪書的作者沒有寫好
你自己檢討一下自己的學習心態吧
複製程式
#include<iostream>
using namespace std;
class person {
private:
char name[10];// 定義一個結構資料型態Student
public:
friend istream& operator>>(istream& is,person& ps){
return is>>ps.name;
}
friend ostream& operator<<(ostream& os,person& ps){
return os<<ps.name;
}
};
int main(){
person p;
cout <<"How many students in class:"<<endl;
cin >> p;
cout<<"name :"<<p<<endl;
system("pause");
return 0;
}
歐!~~雪特...頁面整理完才發現這篇好幾個月前的文章了
怎麼會自己隨便跳頁