const变量赋值报错分析

const变量赋值报错分析

const变量赋值报错

从变量到常量的赋值是合法C++的语法约定的,
如从char 到const char顺畅;
但从char **到 const char **编译器就会报错:

error: invalid conversion from `char**‘ to `const char**‘

示例:

int main(int argc, char *argv[])
{
    char a = ‘1‘;
    const char b = a;

    char * a2 = "12345";
    const char * b2 = a2;

    char** a3 = NULL;

    //const char** b3 = a3; //error
     char** const c3 = a3; //ok
     char* const * d3 = a3; //ok
}

原因:
const char** b3 说明 b3的指针可以变更,可以再指向另外一个地址;

b3和a3都是unqualified的,但b3指向的对象类型为pointer to const char,

a3指向的对象类型为 pointer to char,两者是不相容类型,

不符合两操作数必须指向相容类型的规定,因此赋值非法。

更详细的解释详见参考资料1;

而char** const c3 = a3;正确,则是因为const限制了c3指针的地址变更,即它指向了a3,就不再能变更指向其它指针了;这就限制了指针地址变更可能发生的潜在问题;

当然这时候,使用一个强制类型转换,可以解决这个编译错误:

    const char** b3 = const_cast<const char**>(a3); // ok

但转换后的代码再出现问题就很难排查了;

强制类型转换的潜在问题

看以下示例:

class Foo {
public:
  Foo(){
      i = 1;
  }
  void modify(){// make some modification to the this object
      i = 2;
  }
  void print() const {
      cout << "Foo_i:" << i << endl;
  }
private:
  int i;
};

//演示潜在的危险
//error: invalid conversion from `Foo**‘ to `const Foo**‘
/////////////////////////////////////////////////////////
int main(int argc, char *argv[])
{
    const Foo x;
    Foo* p;

    //const Foo ** q = &p;  //q now points to p; this is (fortunately!) an error
    const Foo ** q = const_cast<const Foo **>(&p);
    *q = &x; // p now points to x
    p->modify(); // Ouch: modifies a const Foo!!
    x.print(); // print: Foo_i:2
    return 0;
}

我们定义了一个常量的Foo,常量Foo方法打印出来的永远为1;
Foo**到const Foo **的转换报错,

通过一个强转符让编译通过,

最后的x.print()的结果是2;这样的潜在危险在正式的项目代码中就很难发现;

很难会想到一个const对象还能够变更;

参考资料:

  1. 指针与const
  2. Why am I getting an error converting a Foo → Foo const?
  3. Converting Derived → Base works OK; why doesn‘t Derived → Base work?
时间: 2024-12-09 09:17:44

const变量赋值报错分析的相关文章

zabbix报错分析

zabbix报错分析 报错信息如下: 3128:20150429:114455.871 history data from active proxy on "115.29.182.109" failed: proxy "jinrong" not found 查找源码 [[email protected] src]# grep "history data from active proxy" * -r|more zabbix_server/trap

学会WCF之试错法——安全配置报错分析

安全配置报错分析 服务端配置 <system.serviceModel> <bindings> <wsHttpBinding> <binding name ="WsHttpBinding_IService" maxReceivedMessageSize="370000" receiveTimeout="00:10:01" maxBufferPoolSize="100"> <

FastDFS的一次报错分析

1.故障描述: 配置好fdfs后,测试上传一个/etc/passwd的文件,发现有报错信息(之前已经重启过FastDFS相关的服务过了) [[email protected] fdfs]# fdfs_upload_file /etc/fdfs/client.conf /etc/passwd [2016-04-03 22:40:56] ERROR - file: tracker_proto.c, line: 48, server: 192.168.1.136:22122, response sta

rsyslog服务日志报错分析1

客户问题: 最近对服务器进行日志检查时,发现部分主机的rsyslog服务状态有报错,报错详情如下 排查过程: 1.从报错截图来看,报错主要发生在文件'/usr/lib64/rsyslog/omazuremds.so'上 2.经查询该文件模块是由LinuxDiagnostic 2.3的虚拟机扩张进行安装的,该扩展的安装位置见下 3.目前怀疑问题机器的LinuxDiagnostic 2.3扩展没有在机器上正确安装,或在虚拟机内部没能正常启动引起的报错 4.可以通过如下方法检查该扩展的正确性 a.在P

vue created钩子使用后台数据赋值给data里的变量,报错‘undefined’

created: function () { this.$axios.post('/jsonData').then( function (res) { this.cares = res.data; console.log(this.cares) }) 以上报错‘undefined’ 经过查询得知,.then回调里的this指向的不是vue实例,所以出错. 解决办法: 1.修改this指向,原生js可以用.bind()方法 2.ES6 箭头函数 .then(  res => { this.care

The SELECT would examine more than MAX_JOIN_SIZE rows 报错分析 MYSQL

用了一个联表查询一个大表,21 个字段,近四千万条记录吧.另一个表就几万的记录量. 报错误信息为: #1104 The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okay. 分析的原因是: 1,临时表太小了.不能装下查询的中间集. 2,或者没有索引或设置的不好. 3

mvn打包及报错分析

普通打包命令: mvn clean install -Dmaven.test.skip=true指定配置文件打包: mvn clean package -P prod -Dmaven.test.skip=true <profiles> ... <profile> <id>prod</id> <properties> <autoconfig.properties>prod.properties</autoconfig.proper

注入之mysql报错Floor报错分析

完整的payload:http://www.xishaonian.cn/sql.php?id=1+and(select 1 from(select count(*),concat((select (select (select concat(0x7e,database(),0x7e))) from information_schema.tables limit 0,1),floor(rand(0)*2))x from information_schema.tables group by x)a)

MarkDownPad2报错分析

在Win10系统上安装 markdownpad2 刚安装完打开一个文件时报错: An error occurred with the html rendering component.This issue may be fixed by installing a missing component.Would you like to learn more?如下图所示: 这是因为缺少组件,渲染不正常造成的,Win10系统的通病. 点击 Yes 后弹出如下界面: 点击 Yes 后弹出的网址为:htt