1、引用为变量的别名,在定义时必须初始化,不能改变指向
2、const在&之前表明引用为常引用,不能通过该引用修改值
3、const在&之后,const限定作用无效
4、const在&前后都用,效果同步骤2