我使用的外部库有一个接受void *
的方法我希望这个void *指向boost :: any对象中包含的对象。
是否可以获取boost :: any对象内容的地址?
我正在尝试使用myAny.content,但到目前为止还没有运气!我希望dynamic_cast或unsafe_any_cast的某些组合能够满足我的需要。
谢谢!
答案 0 :(得分:5)
您可以使用boost::any_cast
获取指向基础类型的指针(前提是您在编译时知道它)。
boost::any any_i(5);
int* pi = boost::any_cast<int>(&any_i);
*pi = 6;
void* vpi = pi;
答案 1 :(得分:3)
不幸的是,这是不可能的;如果类型与包含的类型不同,boost::any_cast
将拒绝强制转换。
如果您愿意使用不受支持的内部黑客,current version of the header有一个未记录且不受支持的函数boost::unsafe_any_cast
(顾名思义)绕过boost::any_cast
执行的类型检查:
boost::any any_value(value);
void *content = boost::unsafe_any_cast<void *>(&any_value);
标题可以说明unsafe_any_cast
:
// Note: The "unsafe" versions of any_cast are not part of the
// public interface and may be removed at any time. They are
// required where we know what type is stored in the any and can't
// use typeid() comparison, e.g., when our types may travel across
// different shared libraries.