首页 > 代码库 > const
const
#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类型的指针
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。