首页 > 代码库 > 体验变量的引用

体验变量的引用



体验变量的引用


/*
 *Copyright(c)2014,烟台大学计算机学院
 *All rights reserved.
 *文件名称:test.cpp
 *作者: 杨汉宁
 *完成日期:2014年 12月 8日
 *版本号:v1.0
 *
 *问题描述:体验变量的引用
 *程序输入:
 *程序输出:
 */
#include <iostream>
using namespace std;
int main()
{
    int a=10;
    int &b=a;                     //声明b是a的引用
    a=a+10;                       //a的值变了,b的值也会变
    cout<<a<<"  "<<b<<endl;
    cout<<endl;
    b=b*3;                        //b的值变了,a的值也会变
    cout<<a<<"  "<<b<<endl;
}

体验变量的引用