• const 指针和指向常量的指针


    1,const int* p ;  //指向常量的const指针

    2,int const *p; // 同1一样,是指向常量的指针,一般用1的形式;

    3,int * const p; // 常量指针,指针内容不变(即指向的地址不变,但是地址内容可以改变)

    4, const int * const p;  // 指向常量的常指针(地址和地址指向的内容都不能变);

    5, int const * const p;  // 同5

  • 相关阅读:
    hdoj:2075
    hdoj:2072
    hdoj:2071
    hdoj:2070
    hdoj:2069
    test001
    hdoj:2067
    hdoj:2061
    hdoj:2058
    hdoj:2057
  • 原文地址:https://www.cnblogs.com/rulin/p/13019267.html
Copyright © 2020-2023  润新知