• 如何理解*


    如何理解*

      const char*, char const*, char*const的区别问题几乎是C++面试中每次都会有的题目。 事实上这个概念谁都有,只是三种声明方式非常相似很容易记混。Bjarne在他的The C++ Programming Language里面给出过一个助记的方法: 把一个声明从右向左读。 

      char * const cp; ( * 读成 pointer to
      cp is a const pointer to char 

      const char * p; 
      p is a pointer to const char; 

      char const * p; 
      同上因为C++里面没有const*的运算符,所以const只能属于前面的类型。 

      C++标准规定,const关键字放在类型或变量名之前等价的。

     1 char ** p1; 
     2 //    pointer to    pointer to    char 
     3 const char **p2;
     4 //    pointer to    pointer to const char 
     5 char * const * p3;
     6 //    pointer to const pointer to    char 
     7 const char * const * p4;
     8 //    pointer to const pointer to const char 
     9 char ** const p5;
    10 // const pointer to    pointer to    char 
    11 const char ** const p6;
    12 // const pointer to    pointer to const char 
    13 char * const * const p7;
    14 // const pointer to const pointer to    char 
    15 const char * const * const p8;
    16 // const pointer to const pointer to const char

    参考:http://blog.csdn.net/yingxunren/article/details/3968800

  • 相关阅读:
    关系数据理论
    JavaScript语言——对象
    网络编程基础入门级
    数据库加快查询速度索引
    C/C++随机函数的生成(转载)
    sql连接查询
    深入浅出HTTP请求
    17搜索如何抓全网页
    搜索引擎之百度一下
    搜索引擎之中搜
  • 原文地址:https://www.cnblogs.com/tekkaman/p/3545074.html
Copyright © 2020-2023  润新知