主要用来修饰形参,防止误操作
const int&ref = 10合法
相当于int temp = 10;
const int & ref = temp
单纯的引用是不能引用右值的
一般是在函数参数列表中,const int &a,主要是为了防止对引用的值进行了修改