码迷,mamicode.com
首页 > 其他好文 > 详细

const用法

时间:2014-06-16 06:27:06      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

一、const作用

二、const用法

1、修饰一般常量  

  修饰符const可以用在类型说明符前,也可以用在类型说明符后。

例如: 

bubuko.com,布布扣
  int const x=2; 
  const int x=2; 
bubuko.com,布布扣

2、修饰常数组

   修饰符const可以用在类型说明符前,也可以用在类型说明符后 

例如: 

bubuko.com,布布扣
  int const a[5]={1, 2, 3, 4, 5}; 
  const int a[5]={1, 2, 3, 4, 5}; 
bubuko.com,布布扣

3、修饰常指针 

① const int *A;   

  const修饰指向的对象,A可变,A指向的对象不可变 
② int const *A;

  const修饰指向的对象,A可变,A指向的对象不可变 
③ int * const A; const

  修饰指针A, A不可变,A指向的对象可变 
④ const int * const A;

  指针A和A指向的对象都不可变 

 

参考资料:c语言中const关键字详解

 

const用法,布布扣,bubuko.com

const用法

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/amanlikethis/p/3783986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!