当前位置:网站首页>02.01-----参数的引用的作用“ & ”
02.01-----参数的引用的作用“ & ”
2022-08-05 05:13:00 【长路漫漫 大佬为伴】
参数的引用的作用“ & ”
对参数的修改需要带回来的,就要使用引用符号 “&”
无参数的引用“ & ”
#include <iostream>
using namespace std;
void test(int x){
x=1024;
printf("test函数内部 x=%d\n",x);
}
int main(){
int x=1;
printf("调用test前 x=%d\n",x);
test(x);
printf("调用test后 x=%d\n",x);
}
调用test前 x=1
test函数内部 x=1024
调用test后 x=1
使用参数的引用“ & ”
#include <iostream>
using namespace std;
void test(int &x){
x=1024;
printf("test函数内部 x=%d\n",x);
}
int main(){
int x=1;
printf("调用test前 x=%d\n",x);
test(x);
printf("调用test后 x=%d\n",x);
}
调用test前 x=1
test函数内部 x=1024
调用test后 x=1024
边栏推荐
猜你喜欢
随机推荐
Judgment statement _switch and case
Returned object not currently part of this pool
【软考 系统架构设计师】软件架构设计③ 特定领域软件架构(DSSA)
Requests库部署与常用函数讲解
多线程查询结果,添加List集合
ESP32 485 Illuminance
Redis哨兵模式配置文件详解
【过一下 17】pytorch 改写 keras
2023 International Conference on Information and Communication Engineering (JCICE 2023)
Dashboard Display | DataEase Look at China: Data Presents China's Capital Market
【学习笔记之菜Dog学C】动态内存管理之经典笔试题
Mysql5.7 二进制 部署
「PHP8入门指南」PHP简明介绍
WPF中DataContext作用
2022 The 4th C.Easy Counting Problem (EGF+NTT)
Difference between for..in and for..of
Flutter学习三-Flutter基本结构和原理
【Transfer】What is etcd
redis 持久化
UVA10827