引用和指针_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > 引用和指针

引用和指针

 2010/12/30 8:05:20  gyht0808  http://gyht0808.javaeye.com  我要评论(0)
  • 摘要:1引用简单理解引用就是一个变量的另一个名字,从这个名字的角度对变量可以加以修饰,同时拥有const指针的特性,所以在声明时必须初始化1inta=1;2constintb=4;3int&ref_a;//必须初始化:declaredasreferencebutnotinitialized4constint&ref_a_const=a;5ref_a++;6ref_a_const++;//只读的:incrementofread
  • 标签:指针

1 引用

简单理解引用就是一个变量的另一个名字,从这个名字的角度对变量可以加以修饰,同时拥有const指针的特性 ,所以在声明时必须初始化

1?????int?a=1;
2?????const?int?b=4;
3?????int&?ref_a;//必须初始化?:declared?as?reference?but?not?initialized
4?????const?int&?ref_a_const=a;
5?????ref_a++;
6?????ref_a_const++;//只读的:increment?of?read-only?reference?‘ref_a_const’
7?????int&????ref_b=b;//类型不匹配:?invalid?initialization?of?reference?of?type?‘int&’?from?expression?of?type?‘const?int’
8?????const?int&?ref_b_const=b;
发表评论
用户名: 匿名