📄 reference.cpp
字号:
//reference.cpp
#include <iostream.h> //cout
#include <conio.h> //getch()
void main()
{ int mother; //变量
int &mami=mother; //与mother同地址
int &woman=mami; //与mother同地址
mother = 36;
cout << "mami =" << mami << endl;
cout << "woman=" << woman << endl;
cout << "mother="<< mother << endl;
cout << " mami 加1后:\n";
mami++;
cout << "mami =" << mami << endl;
cout << "woman=" << woman << endl;
cout << "mother="<< mother << endl;
cout << " address as followings:\n";
cout << "mother : " << hex << &mother << endl;
cout << "mami : " << &mami << endl;
cout << "woman : " << &woman << endl;
getch();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -