码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材--p39

时间:2019-12-02 12:04:24      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:mic   one   sys   教材   main   png   src   return   name   

源程序:

 

using namespace std;

int main()

{

int oneInt = 1;

int &ref = oneInt;

const int &refc = oneInt;  //定义常引用

ref = 2;  //修改ref也即修改了oneInt

cout << "oneInt=" << oneInt << "," << "ref=" << ref << endl;//oneInt=2,ref=2

cout << "refc=" << refc << endl;

oneInt = 3;

cout << "ref=" << ref << endl;

cout << "refc=" << refc << endl;

int &ref2 = ref; //ref2和ref都是oneInt的引用

cout << "ref2=" << ref2 << endl;

//refc = 5;  //错误,不能使用常引用对所引用的变量进行修改

system("pause");

return 0;

}

运行结果:

技术图片

自考新教材--p39

标签:mic   one   sys   教材   main   png   src   return   name   

原文地址:https://www.cnblogs.com/duanqibo/p/11969536.html

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