- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想初始化 std::vector
的和std::map
的 std::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
和 second
成员没有为 movable_il
定义。
因为您无论如何都在尝试从迭代器构造 map
,所以我认为您自己进行迭代并手动插入元素不会对性能造成任何影响。我已经基于此制定了解决方案。这不是最漂亮的解决方案,但它可以完成工作。
此外,为了让编译器从对
“初始化列表”中推断出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/
我是 Spring 新手,这就是我想要做的事情: 我正在使用一个基于 Maven 的库,它有自己的 Spring 上下文和 Autowiring 字段。 它的bean配置文件是src/test/res
我在我的测试脚本中有以下列表初始化: newSequenceCore=["ls", "ns", "*", "cm", "*", "ov", "ov", "ov", "ov", "kd"] (代表要在控
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Class construction with initial values 当我查看 http://en.
我得到了成员变量“objectCount”的限定错误。编译器还返回“ISO C++ 禁止非常量静态成员的类内初始化”。这是主类: #include #include "Tree.h" using n
我有如下所示的a.h class A { public: void doSomething()=0; }; 然后我有如下所示的b.h #include "a.h" class b: publi
我需要解析 Firebase DataSnapshot (一个 JSON 对象)转换成一个数据类,其属性包括 enum 和 list。所以我更喜欢通过传递 DataSnapshot 来手动解析它进入二
我使用 JQuery 一段时间了,我总是使用以下代码来初始化我的 javascript: $(document).ready( function() { // Initalisation logic
这里是 Objective-C 菜鸟。 为什么会这样: NSString *myString = [NSString alloc]; [myString initWithFormat:@"%f", s
我无法让核心数据支持的 NSArrayController 在我的代码中正常工作。下面是我的代码: pageArrayController = [[NSArrayController alloc] i
我对这一切都很陌生,并且无法将其安装到我的后端代码中。它去哪里?在我的页脚下面有我所有的 JS? 比如,这是什么意思: Popup initialization code should be exec
这可能是一个简单的问题,但是嘿,我是初学者。 所以我创建了一个程序来计算一些东西,它目前正在控制台中运行。我决定向其中添加一个用户界面,因此我使用 NetBeans IDE 中的内置功能创建了一个 J
我有 2 个 Controller ,TEST1Controller 和 TEST2Controller 在TEST2Controller中,我有一个initialize()函数设置属性值。 如果我尝
据我所知, dependentObservable 在声明时会进行计算。但如果某些值尚不存在怎么办? 例如: var viewModel ={}; var dependentObservable1 =
我正在阅读 POODR 这本书,它使用旧语法进行默认值初始化。我想用新语法实现相同的功能。 class Gear attr_reader :chainring, :cog, :wheel de
我按照 polymer 教程的说明进行操作: https://www.polymer-project.org/3.0/start/install-3-0 (我跳过了可选部分) 但是,在我执行命令“po
很抱歉问到一个非常新手的Kotlin问题,但是我正在努力理解与构造函数和初始化有关的一些东西。 我有这个类和构造函数: class TestCaseBuilder constructor(
假设我们有一个包含 30 列和 30 行的网格。 生命游戏规则简而言之: 一个小区有八个相邻小区 当一个细胞拥有三个存活的相邻细胞时,该细胞就会存活 如果一个细胞恰好有两个或三个活的相邻细胞,那么它就
我是 MQTT 和 Android 开放附件“AOA” 的新手。在阅读教程时,我意识到,在尝试写入 ByteArrayOutputStream 类型的变量之前,应该写入 0 或 0x00首先到该变量。
我有 2 个 Controller ,TEST1Controller 和 TEST2Controller 在TEST2Controller中,我有一个initialize()函数设置属性值。 如果我尝
我有一个inotify /内核问题。我正在使用“inotify” Python项目进行观察,但是,我的问题仍然是固有的关于inotify内核实现的核心。 Python inotify项目处理递归ino
我是一名优秀的程序员,十分优秀!