当前位置:   article > 正文

C++强制类型转换之const_cast_python install numpy

python install numpy

(1)const_cast 只能改变运算对象的底层 const,底层 const 和顶层 const 的区别如下图。

在这里插入图片描述

  一个简单的例子如下,"const int *p"中的 const 是底层 const ,使用 const_cast 去掉这个底层 const 以后,尽管我们可以通过 q 改变指针指向的变量,但是从运行结果来看,这种通过 q 写值的行为并不合适。

const int a = 10;
const int *p = &a;
int *q;
q = const_cast<int *>(p);
*q = 20;
std::cout<<a<<", "<<(*p)<<", "<<(*q)<<std::endl;
std::cout<<(&a)<<", "<<p<<", "<<q<<std::endl;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

  运行结果如下

10, 20, 20
0x7ffff7bbfd74, 0x7ffff7bbfd74, 0x7ffff7bbfd74
  • 1
  • 2

(2)只有 const_cast 能改变运算对象的常量属性,使用其它形式的命名强制类型转换、改变运算对象的常量属性、都将引发编译器的错误
(3)const_cast 只改变常量属性,不能用它改变运算对象的类型

在这里插入图片描述
  一种使用 const_cast 的场景如下,我们不希望 fun 函数内部修改传入的路径,因此入参带有 const 。但结构体的 camera_path 成员的类型是"char *",我们不能直接赋值,因而需要使用 const_cast 进行类型转换。

typedef struct _init
{
  char *camera_path;
} INIT;

void fun(const char* intrinsic_path)
{
  INIT t_init;
  t_init.camera_path = const_cast<char*>(intrinsic_path);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/101089
推荐阅读
相关标签
  

闽ICP备14008679号