存储在std :: map里面的C std :: unique_ptr使用了被删除的函数ill形成的

前端之家收集整理的这篇文章主要介绍了存储在std :: map里面的C std :: unique_ptr使用了被删除的函数ill形成的前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码,不会编译,它是星期五,我有点疲惫.
#include <string>
#include <memory>
#include <utility>
#include <map>

template< typename T,typename ...Args >
std::unique_ptr< T > make_unique( Args && ...args )
{
    return std::unique_ptr< T >( new T( std::forward< Args >( args )... ) );
}

struct A
{
};

std::map< std::string,std::unique_ptr< A > > _map = { { "A",make_unique< A >() } }; // <-- ERROR!!

以下编译没有问题

int main()
{
    std::pair< std::string,std::unique_ptr< A > > p { "B",make_unique< A >() };
    _map.insert( std::make_pair( "C",make_unique< A >() ) );
}

我得到的错误是(粗略地,删除了g)

use of deleted function 'constexpr std::pair<...>( const st::pair<...> & )
'constexp std::pair<...>::pair( const std::pair<...> & ) is implicitly deleted because the default definition would be illegal.

Argghh!
请阅读c 11标准中的内容.

When an aggregate is initialized by an initializer list,as specified
in 8.5.4,the elements of the initializer list are taken as
initializers for the members of the aggregate,in increasing subscript
or member order. Each member is copy-initialized from the
corresponding initializer-clause

无赖!

任何人都知道初始化列表是否完全不可能?

解决方法

您无法做很多事情:复制初始化列表中的元素.这与仅移动的类不相容.

有一种方法可以绕过这个“缺陷”,但阅读并不是很好;你决定

using map_type  = std::map< std::string,std::unique_ptr< A > >;
using pair_type = map_type::value_type;
pair_type elements[] = { { "A",std::make_unique< A >() },{ "B",std::make_unique< A >() } };

map_type myMap { std::make_move_iterator( begin(elements) ),std::make_move_iterator( end(elements) ) };

这将使myMap迭代范围并移动元素,而不是复制.方法请从this其他问题中获取.

原文链接:https://www.f2er.com/c/118003.html

猜你在找的C&C++相关文章