我是靠谱客的博主 负责硬币,最近开发中收集的这篇文章主要介绍[C++]reference variables(引用变量)在pass arguments to functions中的运用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一. reference variable的形式
int a;
int & b = a; // b is alias(别名) for a
[例]

#include <iostream>
using namespace std;
int main(int argc, const char * argv[]) {
int a=10;
int & b = a;
cout<<b<<"n";
return 0;
}

the output is:

10

二. reference variables(引用变量)在pass arguments to functions中的运用
[例]

#include <iostream>
using namespace std;
void func(int & x)
{
x=x+10;
}
int main() {
int m=10;
func(m);
cout<<"the output is: "<<m<<"n";
return 0;
}

x成为了m的别名(alias),所以x加10即m加10,因此结果为m变为20.

the output is: 20

最后

以上就是负责硬币为你收集整理的[C++]reference variables(引用变量)在pass arguments to functions中的运用的全部内容,希望文章能够帮你解决[C++]reference variables(引用变量)在pass arguments to functions中的运用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部