考虑以下代码:
int** a;
const int** b;
b = a;
此代码给出错误:
error C2440: '=' : cannot convert from 'int **' to 'const int **'
Conversion loses qualifiers
为什么我不能执行演员表?
操作简单的指针时,它工作正常。
int* a;
const int* b;
b = a;
考虑以下代码:
int** a;
const int** b;
b = a;
此代码给出错误:
error C2440: '=' : cannot convert from 'int **' to 'const int **'
Conversion loses qualifiers
为什么我不能执行演员表?
操作简单的指针时,它工作正常。
int* a;
const int* b;
b = a;