gpt4 book ai didi

c++ - 我可以将 std::map 迭代器解包到可选项的结构化绑定(bind)吗?

转载 作者:行者123 更新时间:2023-12-05 08:18:07 28 4
gpt4 key购买 nike

考虑以下代码:

#include<functional>
#include<iostream>
#include<map>

const std::map<int, std::string> numberToStr{{1, "one"}, {2,"two"}};
int main() {
auto it = numberToStr.find(2);
if (it ==numberToStr.end()){
return 1;
}
const auto&[_, str] = *it;
std::cout << str;
}

我有什么办法可以将可能取消引用的 it 解包为 2 个可选值(_ 和 str),这样我就可以写:

const auto&[_, str] = // some magic;
// _ is std::optional<int>, str is std::optional<str>
if (!str){
return 1;
}
std::cout << *str;
}

我认为不是,因为结构化绑定(bind)是语言级别的东西,而 std::optional 是一个库功能,据我所知,没有办法自定义交互。

注意:我假设我可以实现我自己的映射,它返回知道它们是否指向 .end() 的迭代器,并且“破解”自定义点以基于此执行可选逻辑,我要求一般用例,当我不控制容器。

最佳答案

你可以添加一个辅助函数,比如

template <typename Key, typename Value, typename... Rest>
std::pair<std::optional<Key>, std::optional<Value>> my_find(const std::map<Key, Value, Rest...>& map, const Key& to_find)
{
auto it = map.find(to_find);
if (it == map.end())
return {};
else
return {it->first, it->second};
}

然后你会像这样使用它

const auto&[_, str] = my_find(numberToStr, 2);
// _ is std::optional<int>, str is std::optional<str>
if (!str){
return 1;
}
std::cout << *str;

如果你只关心这个值,你可以通过返回它来缩短代码一点

template <typename Key, typename Value, typename... Rest>
std::optional<Value> my_find(const std::map<Key, Value, Rest...>& map, const Key& to_find)
{
auto it = map.find(to_find);
if (it == map.end())
return {};
else
return {it->second};
}

然后你会像这样使用它

auto str = my_find(numberToStr, 2);
// str is std::optional<str>
if (!str){
return 1;
}
std::cout << *str;

关于c++ - 我可以将 std::map 迭代器解包到可选项的结构化绑定(bind)吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65130017/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com