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++离港篇的主要内容,如果未能解决你的问题,请参考以下文章

标准时钟系统(卫星母钟)在IT网络应用,京准电子科技

NTP授时服务器是如何让计算机时间同步的?

ETA啥意思

卫星同步时钟在咸阳机场的应用案例

学习C++有啥用途?

C++语法小记---标准库