2.3.1 引用

版权声明:本文为博主原创文章,未经博主允许不得转载 https://blog.csdn.net/qit1314/article/details/89953863

书中页数:P46
代码名称:ref-ex.cc

#include <iostream>
int main()
{
	int i = 0, &ri = i;  // ri is a reference to i
	// ri is just another name for i; 
	// this statement prints the value of i twice
	std::cout << i << " " << ri << std::endl;

	i = 5; // changing i is reflected through ri as well
	std::cout << i << " " << ri << std::endl;

	ri = 10; // assigning to ri actually assigns to i
	std::cout << i << " " << ri << std::endl;

	return 0;
}

猜你喜欢

转载自blog.csdn.net/qit1314/article/details/89953863