gpt4 book ai didi

c++ - 如何将 const void* 转换为 unsigned char*?

转载 作者:搜寻专家 更新时间:2023-10-31 00:09:25 25 4
gpt4 key购买 nike

为了将 const void* 转换为 unsigned char*,C 强制转换使用什么 C++ 强制转换?

auto ucharptr = (unsigned char*)const_void_ptr;

最佳答案

尝试使用 C++ 转换运算符,您需要两个:一个用于删除 const,另一个用于转换为您的指针类型:

auto ucharptr = reinterpret_cast<unsigned char*>(const_cast<void*>(const_void_ptr));

关于c++ - 如何将 const void* 转换为 unsigned char*?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43298862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com