gpt4 book ai didi

c++ - 如何获得 af boost::variant 的第 i 个基础类型(通过 const 整数)

转载 作者:行者123 更新时间:2023-11-30 02:52:53 26 4
gpt4 key购买 nike

我想获取变体的基础类型。例如“类似这样的东西:

typedef boost::variant< shared_ptr<int> , shared_ptr<float> > VType;

typedef VType::get<0>::type TYPE1; // TYPE1 = shared_ptr<int>

TYPE1 value = new std::remove_pointer<TYPE1>::type() // make a new shared_ptr<int>

关于如何通过 boost 实现这一点有什么想法吗?

最佳答案

variant包含 MPL sequence称为 types,您可以使用它来访问类型。

#include <boost/mpl/at.hpp>

typedef typename boost::mpl::at_c<VType::types, 0>::type TYPE1;

关于c++ - 如何获得 af boost::variant 的第 i 个基础类型(通过 const 整数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18469876/

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