当前位置:   article > 正文

参数传递过程中:函数形参 int a 与 int& a 的区别_int &a

int &a

1. int a : 传值参数

仅仅将实参的值传递给形参。

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. void test01(int x)
  4. {
  5. x = 100;
  6. cout<<"x: "<<x<<endl;
  7. cout<<"&x: "<<&x<<endl;
  8. }
  9. int main()
  10. {
  11. int n1 = 7;
  12. test01(n1);
  13. cout<<"n1: "<<n1<<endl;
  14. cout<<"&n1: "<<&n1<<endl;
  15. return 0;
  16. }

输出:

由以上可知:

 

2. int& a : 传引用参数

将实参取个别名,直接传给形参。

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. void test01(int& x)
  4. {
  5. x = 100;
  6. cout<<"x: "<<x<<endl;
  7. cout<<"&x: "<<&x<<endl;
  8. }
  9. int main()
  10. {
  11. int n1 = 7;
  12. test01(n1);
  13. cout<<"n1: "<<n1<<endl;
  14. cout<<"&n1: "<<&n1<<endl;
  15. return 0;
  16. }

输出:

 

由以上可知:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/思考机器7/article/detail/63121
推荐阅读
相关标签
  

闽ICP备14008679号