gpt4 book ai didi

C++ 类型转换 : cast a pointer from void pointer to class pointer

转载 作者:IT老高 更新时间:2023-10-28 22:25:54 32 4
gpt4 key购买 nike

如何将指向 void 对象的指针转换为类对象?

最佳答案

使用 static_cast。请注意,只有当指针确实指向指定类型的对象时,您才必须这样做;也就是说,指向 void 的指针的值取自指向此类对象的指针。

thing * p = whatever(); // pointer to object
void * pv = p; // pointer to void
thing * p2 = static_cast<thing *>(pv); // pointer to the same object

如果您发现自己需要这样做,您可能需要重新考虑您的设计。你放弃了类型安全,让编写无效代码变得容易:

something_else * q = static_cast<something_else *>(pv);
q->do_something(); // BOOM! undefined behaviour.

关于C++ 类型转换 : cast a pointer from void pointer to class pointer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10072004/

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