Chinaunix首页 | 论坛 | 博客
  • 博客访问: 584613
  • 博文数量: 213
  • 博客积分: 6789
  • 博客等级: 准将
  • 技术积分: 1947
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-01 17:11
文章分类

全部博文(213)

文章存档

2012年(9)

2011年(62)

2010年(99)

2009年(43)

分类: C/C++

2010-06-02 17:14:25

#include
/* const usage
 * const int *a= b;        //b is not variable, do not change b via a.
 * int * const a = b       //a is not variable, do not change a.
 * const int * const a = b //a and b are not variable
 */
int main(int argc, char *argv[])
{
    int str[4] = {1,2,3,4};
    int str_dif[4] = {5,6,7,8};
    const char *a = "abc";
    *a = 4; //error: assignment of read-only location

    int * const p = str;
    p = str_dif ;     // error: increment of read-only variable ‘p’
    const int * const q = str; //combine up 2

    return 0;
}
阅读(766) | 评论(0) | 转发(0) |
0

上一篇:friend function

下一篇:程序分析工具gprof

给主人留下些什么吧!~~