首页 > 其他 > 详细

const

时间:2014-05-08 10:01:52      阅读:391      评论:0      收藏:0      [点我收藏+]
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
const int N=100;
int const N=100; //二者等价
int mark=0;
//1
int* ref_mark=&mark;
int* const book1=ref_mark;//指针book1是个常量,并没有说明这个指针指向的int值是个常量
const int* book2=ref_mark;//指针book2是个指针类型的常量
cout<<"N1:"<<N1<<endl;
cout<<"N2:"<<N2<<endl;
    *book1=10;
cout<<*book1<<endl;
*book2=20;
/*
|error: assignment of read-only location ‘* book2’|
const int *book2=ref_mark
*/
cout<<*book1<<endl;
cout<<*book2<<endl;
    //2
typedef char* CHARS;

typedef CHARS const CPTR;
//替换后
typedef char * const CPTR;
//仍然是指向char类型的常量指针

typedef const CHARS CPTR;
//替换后
typedef const char * CPTR;
//是指向char类型的指针

}

const,布布扣,bubuko.com

const

原文:http://www.cnblogs.com/jianfengyun/p/3714569.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!