C++_引用机制
1.引用的内涵
引用就是给变量取外号而已
2.四种不能使用引用的情况 void &r=x; //不能建立void类型引用
int &&r=x; //不能建立引用的引用
int &*p=x; //不能建立指向引用的指针
int &ra[10]=a; //不能建立引用的数组
总结:引用一有三无,有类型,无引用,无指针,无数组
3.引用的最基本用法
CODE:
#include<iostream>
using namespace std;
int x=5,y=10;
int &r=x;
void print()
{
cout<<"x="<<x<<" y=<<y<<" r="<<endl;
cout<<"Address of x "<<&x<<endl;
cout<<"Address of y "<<&y<<endl;
cout<<"Address of z "<<&z<<endl;
}
int main()
{
print();
r=y;
y=100;
print();
x=200;
print();
return 0;
}
RESULT:
x=5 y=10 r=5 Address of x 00474DD0 Address of y 00474DD4 Address of r 00474DD0 x=10 y=100 r=10 Address of x 00474DD0 Address of y 00474DD4 Address of r 00474DD0 x=200 y=100 r=200 Address of x 00474DD0 Address of y 00474DD4 Address of r 00474DD0
总结:修改作用,引用==原变量
4.引用作为形参
引用作形参,系统不为其另分配内存空间,与原变量公用内存空间。
调用函数才初始化。
CODE:
#include <iostream>
using namespace std;
void swap(int &x,int &y)
{
int t=x;
x=y;
y=t;
}
int main()
{
int a=3,b=5,c=10,d=20;
cout<<"a="<<a<<" b="<<b<<endl;
swap(a,b);
cout<<"a="<<a<<" b="<<b<<endl;
cout<<"c="<<c<<" d="<<d<<endl;
swap(c,d);
cout<<"c="<<c<<" d="<<d<<endl;
return 0;
}
RESULT:
a=3 b=5 a=5 b=3 c=10 d=20 c=20 d=10