是的,boost :: multiprecision :: cpp_int是POD吗?

时间:2014-04-08 15:06:07

标签: c++ boost pool multiprecision

我打算使用具有boost::multiprecision::cpp_intsee Boost Multiprecision)的类作为数据成员,我希望使用boost::fast_pool_allocator {{3在堆上管理这些类的实例}}

为了使其安全,我需要知道boost::multiprecision::cpp_int是一个POD(或者至少它在堆上没有分配 - 即,纯粹是基于堆栈的。)

boost::multiprecision::cpp_int是POD吗?

谢谢!

2 个答案:

答案 0 :(得分:4)

为什么不写一个小程序来查找?

#include <iostream>
#include <type_traits>
#include <boost/multiprecision/cpp_int.hpp>

int main()
{
    std::cout << std::is_pod<boost::multiprecision::cpp_int>::value << std::endl;
}

在我的平台上(gcc版本4.8.2),输出为0,表示类型不是POD类型。

答案 1 :(得分:1)

答案来自@ PlasmaHH的评论,回想起来非常明显,不,boost::multiprecision::cpp_int不是POD

引用PlasmaHH:

  

考虑一下,它可能延伸到何时   它增长?还有什么可能&#34;确定比特数   在诉诸动态内存之前直接存储在对象中   分配&#34;在您链接的文档中是什么意思?