const 学习笔记

Posted aaa2222339

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了const 学习笔记相关的知识,希望对你有一定的参考价值。

#include<stdlib.h>
#include<iostream>

using namespace std;

int main(){
    // const 仅仅起到是否为常数的修饰
    // 普通变量
    int a=1;
    const int b=a;  // b定了,不能再赋值
    a=2;
    cout << b <<endl;

    // 指针时
    int *p=&a;
    const int *p1=p; // *p1定了,不能再给*p1赋值,但是p1可变,如p1=&c
    cout << *p1 <<endl;
    int * const p2=&a; // 注意此时const的顺序,此时p2不能变了
    a=2323;
    cout << *p2 <<endl;

    // 引用时
    int c=123;
    const int &y=c ; // y定了,所以y不能变了,但是c可变,y的值跟着变
    cout << y <<endl;
    c=2222;
    cout << y <<endl;
    system("pause");
    return 0;
}

 

以上是关于const 学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

C++学习笔记关于const int* int const * int* const

ES6学习笔记之let和const

ES6学习笔记之let和const

ECMAScript 6 入门学习笔记——let和const

ES6学习笔记之let/const

Nodejs 学习笔记 jquery 使用