###C++ Primer第5版 学习笔记
####第二章
int i = 1024, *p = &i, &r = i; i是int,p是int指针,r是int引用,基本数据类型都是int,各自的声明符不同
auto &a = 42