gpt4 book ai didi

c++ - 什么是旧式类型转换 : pv = (void*)ps; 的命名类型转换

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:57:26 26 4
gpt4 key购买 nike

旧式转换的代码:

const string *ps;  
void *pv;

pv = (void*)ps;

我尝试了三种不同的命名转换:

pv = static_cast<void*>(ps); //  error: invalid static_cast from type ‘const string* {aka const std::basic_string<char>*}’ to type ‘void*’

pv = const_cast<void*>(ps); // error: invalid const_cast from type ‘const string* {aka const std::basic_string<char>*}’ to type ‘void*’

pv = reinterpret_cast<void*>(ps); // error: reinterpret_cast from type ‘const string* {aka const std::basic_string<char>*}’ to type ‘void*’ casts away qualifiers

如您所见。什么都不管用。

最佳答案

您应该const_cast,但类型正确。从 string*void* 的转换将自动发生。

pv = const_cast<string*>(ps);

关于c++ - 什么是旧式类型转换 : pv = (void*)ps; 的命名类型转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13028186/

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