其他分享
首页 > 其他分享> > c – 使用boost :: pool_allocator时不调用Move构造函数

c – 使用boost :: pool_allocator时不调用Move构造函数

作者:互联网

我有以下简单的测试代码.

#include <stack>
#include <iostream>
#include "boost/pool/pool_alloc.hpp"

struct Frame
{
    uint32_t i{};

    Frame(uint32_t _i) : i(_i) {}

    Frame(const Frame& f)
    {
        std::cout << "Copy constructor" << std::endl;
        i = f.i;
    }

    Frame(Frame&& f)
    {
        std::cout << "Move constructor" << std::endl;
        std::swap(i, f.i);
    }
};

int main(int argc, char* argv[])
{
    {
        std::stack<Frame, std::deque<Frame>> stack;

        Frame f(0);
        stack.push(std::move(f)); // Move constructor
        stack.push(Frame(1)); // Move constructor
    }

    {
        std::stack<Frame, std::deque<Frame, boost::pool_allocator<Frame>>> stack;

        Frame f(0);
        stack.push(std::move(f)); // Copy constructor
        stack.push(Frame(1)); // Copy constructor
    }


    return 0;
}

当我使用Clang或GCC编译此代码时,它给出了以下输出:

Move constructor
Move constructor
Copy constructor
Copy constructor

为什么使用boost :: pool_allocator会阻止编译器使用移动构造函数?
我错过了什么吗?

解决方法:

pool_allocator不能完美地转发构造的参数:它只是对值类型进行const引用,并将其作为初始化器传递给new.

这是因为尚未为C 11更新pool_allocator.

标签:c,c11,boost,move-semantics,boost-pool
来源: https://codeday.me/bug/20190830/1766683.html