C++离港篇
Posted pxxfxxxx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++离港篇相关的知识,希望对你有一定的参考价值。
4.0 C++语言引用
也就是变量的别名
基本数据类型的引用
#include <iostream> using namespace std; int main(void) int a = 3; int &b = a; //引用必须初始化 b = 10; cout << a << endl; return 0;
结构体类型的引用
#include <iostream> using namespace std; typedef struct int x; int y; Coor; int main(void) Coor c1; Coor& c = c1; c.x = 10; c.y = 20; cout << c1.x << " " << c1.y << endl; return 0;
指针类型的引用
#include <iostream> using namespace std; int main(void) int a = 10; int *p = &a; int *&q = p; *q = 20; cout << a << endl; return 0;
引用做函数参数
以上是关于C++离港篇的主要内容,如果未能解决你的问题,请参考以下文章