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

const

时间:2014-05-12 09:01:55      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:c   int   a   amp   指针   const   

    const int i = 100;
    const int i2 = 200;

// const 在指针左边,   值为const
    const int * p = &i;
    int const * p2 = &i;

// const 在指针右边,   指针为const
    int a = 10;
    int* const p3 = &a ;

const,布布扣,bubuko.com

const

标签:c   int   a   amp   指针   const   

原文地址:http://www.cnblogs.com/scotth/p/3720828.html

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