引用的基本内容
一.下面的写法定义了一个引用,并将其初始化为引用某个变量
类型名&引用名=某变量名;
int n=4;
int & r=n; r引用了n,并且r的类型是int &
某个变量的引用,等价于这个变量,相当于该变量的一个别名
代码示例:
#include
using namespace std;
int main()
{
int n=7;
int & r=n;
r=4;
cout<
#include
using namespace std;
int main()
{
double a=4,b=5;
double &
引用的基本内容最先出现在Python成神之路。
共有 0 条评论