码迷,mamicode.com
首页 > 编程语言 > 详细

C++中的引用

时间:2016-07-12 13:35:39      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

闲话少说,先看一个swap交换数字的代码

叫换a,b的值

代码

#include<iostream>
#include<cstdio>
using namespace std;

void swap(int& a,int& b)//引用方式交换
{
int temp;
temp=a;
a=b;
b=temp;
}

void swap(int *a,int *b) //指针方式交换
{
int temp;
temp=*a;
*a=*b;
*b=temp;
}

int main(void)
{
int a,b;
cin>>a>>b;
//swap(a,b);
swap(&a,&b);
cout<<a<<" "<<b<<endl;
}
~

C++中的引用

标签:

原文地址:http://www.cnblogs.com/liudehao/p/5663120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!