您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. C/C++中CONST用法总结(推荐)

  2. 主要介绍了C/C++中CONST用法总结(推荐),包括const常量与define宏定义的区别介绍,非常不错,具有参考借鉴价值,需要的朋友参考下吧
  3. 所属分类:其它

    • 发布日期:2020-08-30
    • 文件大小:71680
    • 提供者:weixin_38623249
  1. C/C++中CONST用法总结(推荐)

  2. 1、修饰常量时: const int temp1; //temp1为常量,不可变   int const temp2; //temp2为常量,不可变 2、修饰指针时:   主要看const在*的前后,在前则指针指向的内容为常量,在后则指针本身为常量; const int *ptr; //*ptr为常量;   int const *ptr; //*ptr为常量;   int* const ptr; //ptr为常量;   const int * const ptr; //*ptr、pt
  3. 所属分类:其它

    • 发布日期:2021-01-20
    • 文件大小:74752
    • 提供者:weixin_38612527