1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
| #define _CRT_SECURE_NO_WARNINGS #include<iostream>
using namespace std;
class C { public: C(); C(int ta,int tb); ~C(); friend ostream & operator<<(ostream & cout, const C & another); friend istream & operator>>(istream &cin ,C & another);
private: int a; int b; };
istream & operator>>(istream & cin, C & another) { cin >> another.a >> another.b;
return cin; }
ostream & operator<<(ostream & cout, const C & another) { cout << another.a << endl; cout << another.b << endl; cout << "==================" << endl; return cout; }
C::C(int ta, int tb) { a = ta; b = tb; }
C::C() { }
C::~C() { }
int main(char *argv[], int argc) { C a(1, 2),b(2,3); C c; cout << a << b; cin >> a >> c;
cout << a << c; return 0; }
|