c++ - 使用初始化列表初始化 unique_ptr 的容器(续)

标签 c++

我想初始化std::vector的和std::mapstd::unique_ptr<T>的。就我而言,T是固定的。在此示例中,我假设 T =int ,尽管实际上它是一个基类,从中派生出许多其他类。

我一直在研究以下给出的答案:

https://stackoverflow.com/a/46771893/4875652

我还没有设法让它为std::map工作案例。

以下作品:

#include <memory>
#include <vector>

struct movable_il {
  mutable iptr t;
  operator iptr() const&& { return std::move(t); }
  movable_il( iptr&& in ): t(std::move(in)) {}
};

std::vector<iptr> vector_from_il( std::initializer_list<movable_il> il ) {
  return std::vector<iptr>( std::make_move_iterator(il.begin()), std::make_move_iterator(il.end()) );
}

int main()
{
    auto lol = vector_from_il({iptr{new int{3}}});

   return 0;
}

但是,以下情况则不然:

#include <memory>
#include <map>
#include <utility>

using iptr = std::unique_ptr<int>;

struct movable_il {
  mutable std::pair<std::string, iptr> t;
  operator std::pair<std::string, iptr>() const&& { return std::move(t); }
  movable_il( std::pair<std::string, iptr>&& in ): t(std::move(in)) {}
};

std::map<std::string, iptr> container_from_il( std::initializer_list< movable_il> il ) {
  return std::map<std::string, iptr>( std::make_move_iterator(il.begin()), std::make_move_iterator(il.end()) );
}

int main()
{
    auto lol = container_from_il({std::pair<std::string, iptr>{"a", iptr{new int{3}}}});

   return 0;
}

有什么想法吗?

更新:

我设法得到的最简单的工作示例,与原始代码尽可能相似,不使用模板,是这样的:

#include <iostream>
#include <map>
#include <memory>
#include <utility>

struct movable_pair {
  using first_type = std::string;
  using second_type = std::unique_ptr<int>;
  using pair_type = std::pair<const first_type, second_type>;
  first_type first;
  mutable second_type second;
  operator pair_type() const && { return {first, std::move(second)}; }
  movable_pair(pair_type &&in): first{in.first}, second{std::move(in.second)} {}
};

auto map_from_il(std::initializer_list<movable_pair> il) {
  return std::map<std::string, std::unique_ptr<int>>(std::make_move_iterator(il.begin()),
                                                     std::make_move_iterator(il.end()));
}

// Main function
int main() {
  using iptr = std::unique_ptr<int>;
  auto lol = map_from_il({{{"a", iptr{new int{3}}}}, {{"b", iptr{new int{2}}}}});

  // Small print-out to check we inserted the correct elements :)
  for (auto &l : lol) {
    std::cout << l.first << " " << *l.second << std::endl;
  }

  return 0;
}

感谢用户 Banan 的帮助,特别是找出所需的额外一对大括号。

最佳答案

据我所知,主要问题是您需要使可移动。这是由 movable_il 类完美完成的,但是现在您在尝试从这些类构造 map 时遇到了麻烦,因为 first未为 movable_il 定义 >second 成员。

由于您无论如何都试图从迭代器构造map,因此我认为您自己进行迭代并手动插入元素不会对性能造成任何影响。我基于此提出了一个解决方案。这不是最漂亮的解决方案,但它可以完成工作。

此外,我在让编译器从 pair“初始化列表”中推导出 T 的正确类型时遇到了一些问题,因此我制作了一个小的辅助函数 movable_pair 创建这些,在这种情况下编译器没有问题。

#include <memory>
#include <map>
#include <utility>
#include <iostream>
#include <vector>

// Wrapper class to make type T "movable"
template<class T>
struct movable_il 
{
   mutable T t;
   operator T() const&& { return std::move(t); }
   movable_il( T&& in ): t(std::move(in)) {}

   T get() const { return std::move(t); }
};

// Some template magic to deduce the correct value_type 
// ( not really needed for this example as we are mostly interested in maps )
template<class VT>
struct fix_vt 
{
  using type = VT;
};

template<class VT>
using fix_vt_t = typename fix_vt<VT>::type;

template<class VT> struct fix_vt<const VT> :  fix_vt<VT>  {};

template<class K, class V>
struct fix_vt< std::pair<K,V> >
{
   using type = std::pair<
      typename std::remove_cv<K>::type,
      typename std::remove_cv<V>::type
   >;
};

// Create map from initializer list of movable T (pairs)
template<class C, class T = fix_vt_t<typename C::value_type> >
auto map_from_il(std::initializer_list< movable_il<T> > il)
{
   using map_type = C;
   auto map = map_type{};

   // Loop over il list and insert each element into the map
   for(auto&& entry : il)
   {
       map.insert(std::move(entry.get())); // We get the pair from the movable class and insert it by moving
   }

   return map;
}

// Helper function to create movable pair
template<class First, class Second>
auto movable_pair(First&& f, Second&& s)
{
   using pair_type = std::pair<First, Second>;
   return movable_il<pair_type>{ pair_type{ std::forward<First>(f), std::forward<Second>(s) } };
}

// Main function
int main()
{
   using iptr = std::unique_ptr<int>;
   using key_type   = std::string;
   using value_type = iptr;

   using map_type    = std::map<key_type, value_type>;

   auto lol = map_from_il<map_type>({ movable_pair("a", iptr{ new int {3} } ), movable_pair("b", iptr{ new int {2} }) });

   // Small print-out to check we inserted the correct elements :)
   for(auto& l : lol)
   {
      std::cout << l.first << " " << *l.second << std::endl;
   }

   return 0;
}

免责声明:我仅使用 GCC 8.1.0 对此进行了测试(但我认为使用其他编译器不会出现任何问题)。

更新:如果您在将这些对传递给 map_from_il 时添加额外的一组 {} ,代码无需使用 movable_pair 辅助函数即可编译。

auto lol = map_from_il<map_type>({ { {"a", iptr{ new int {3} } } }, { {"b", iptr{ new int {2} } } } });

更新 2:如果将以下构造函数添加到 movable_il,则该代码也无需额外的 {}:

template<class... U>
movable_il( U&&... in): t{std::forward<U>(in)...} {}

用这个你可以写:

auto lol = map_from_il<map_type>({ {"a", iptr{ new int {3} } }, {"b", iptr{ new int {2} } } });

关于c++ - 使用初始化列表初始化 unique_ptr 的容器(续),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50629016/

相关文章:

c++ - 使用 printf() 保留小数点后两位

c++ - C++ 中的对象变量保存值,而不是对象引用

c++ - 错误 C2101 : '&' on constant

c++ - 从函数返回 shared_ptr 的取消引用值

c++ - 从迭代器调用的 .value() 导致 Appcrash

c++ - 在 C++ 中,只有默认参数的构造函数是默认构造函数吗?

c++ - 如何使用 3 个用户定义函数计算数字的真实平方根

c++ - ESP32 to ESP32 AP/client WiFi连接问题

c++ - 在现代 C++ 中,是否有等效于来自 python 的基于范围的 `enumerate` 循环?

c++ - 启用 _GLIBCXX_DEBUG 后,Stringstream 无法使用 double