创建引用变量 创建引用变量例如,要将 rodents作为rats变量的别名,可以这样做: int rats;int& rodents=rats; //引用 其中,&不是地址运算符,而是类型标识符的一部分。