Bootstrap

int& a (cpp学习笔记)

int a 定义一个变量a

int& a 定义一个引用

//给同一地址取别名;
eg:
int b ;
int &a=b;
输出可知 &a = &b

;