?? 5_5.cpp
字號:
//5_5.cpp
#include <iostream>
using namespace std;
class Two
{
int y;
public:
friend class One;
};
class One
{
int x;
public:
One(int a,Two &r,int b) {x=a;r.y=b;}
void Display(Two & r) {cout<<x<<" "<<r.y<<endl;}
};
int main()
{
Two ob2;
One ob1(22,ob2,30);
ob1.Display(ob2);
return 0;
}
/*
程序運行結果為:
22 30
*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -