gpt4 book ai didi

c++ - boost::unsafe_any_cast 为空时无效的非空指针?

转载 作者:行者123 更新时间:2023-11-28 01:32:12 33 4
gpt4 key购买 nike

我有一段代码,其中使用了 boost::unsafe_any_cast<void*>(&boost::any anyInstance)获取 boost::any 的内容指针目的。代码如下:

boost::any staticResult;  //contains a private pointer called content
f(staticResult); //makes the content pointer a null pointer
void* voidStaticResult = boost::unsafe_any_cast<void*>(&staticResult);

不幸的是,调试时,我看到 staticResult 中的内容指针为 NULL (0x00000000),而 voidStaticResult 为 0x00000004。

(显然没有理由这样做。你有什么想法吗?)

编辑:函数 f() 调用一个创建对象实例的 dll。该实例由 staticResult 的内容指针指向。我需要将指针传递给另一个函数,但在我看来,没有简单的方法可以将 boost::any “强制转换”为指向实例化类的指针。任何其他解决方案都会很棒。

最佳答案

可能不安全 any cast 仅对非空 any 有效。这是不安全且未经检查的。

Any 通常被实现为指向内存块的指针,其中有一个 vtable 后跟对象实例。因此,为了获得指向该对象的指针,您将 sizeof(vtable ptr) 添加到任何内部指针,在您的构建中为 4。

关于c++ - boost::unsafe_any_cast 为空时无效的非空指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51036532/

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