指针和引用

void swapint(int &a,int &b)
{
    int temp;
    temp=a;
    a=b;
    b=temp;
}

c++自动把x,y的地址作为参数传递给swapint函数

int a = 1;
int &b = a;

b = 2;
printf("a = %d\n", a);      //2
int a = 1;
int *b = &a;

*b = 2;
printf("a = %d\n", a);      //2
posted @ 2015-05-31 11:30  thomas_blog  阅读(80)  评论(0编辑  收藏  举报