当前位置: X题卡 > 所有题目 > 题目详情

C++语句const char*const p="hello";,所定义的指针p和它所指的内容都不能被 【10】 。

查看本题答案

你可能感兴趣的试题

语句1的含义是指针变量x不能更改  语句2的含义是指针变量x所指向的值不能更改  语句2的含义是指针变量x不能更改  语句1和语句2含义是相同的  
const int buffer=-256;  const int temp;  const double *point;  const double *rt=new double(5.5);  
语句1的含义是指针变量x不能更改  语句2的含义是指针变量x所指向的值不能更改  语句2的含义是指针变量x不能更改  语句1和语句2含义是相同的  
const int*p=0;  const int y=99;  const int x;  const int*p=new int(100);  
const int buffe=256;  const double *point;  int const buffer=256;  double *const point;  
const int buffer=256;  const int temp;  const double *point;  const double *rt=new double(5.5);  
const int buffer=-256;  const int temp;  const double*point;  const double *rt=new double(5.5);  
const int buffer=256;  const double*point;  int const buffer=256;  double*const point;  
const int buffei=256;  const double*point;  int const buffer=256;  double*const point:;  
该语句不允许定义为int const x=10;  在程序中可以重新对X赋值  变量X不能使用+ +运算符  const关键字只能用来修饰常量  
const int a;  const int a=10;  const int*point=0;  const int*point=new int(10);  
const int a;  const int a=10;  const int*point=0;  const int*point=new int(10);  

热门试题

更多