首页 相关文章 对C++中引用的补充说明(实例)

对C++中引用的补充说明(实例)

#include iostream
  #include string
  using namespace std;
   !-- frame contents -- !-- /frame contents --
  void main(int argc,char* argv[])
  {
   int a=10;
   int b=20;
   int &rn=a;
   coutrn""aendl;
   cout&rn""&aendl;//c++中是无法取得应用的内存地址的,取引用的地址就是取目标的地址!
   rn=b;//把引用指向另一个目标----变量b
  ...[ 查看全文 ]

2016-02-19 标签:

对C++中引用的补充说明(实例)的相关文章

手机页面
收藏网站 回到头部