gpt4 book ai didi

c++ - 枚举的 std::unordered_set,调用 find 给出段错误

转载 作者:行者123 更新时间:2023-11-30 03:14:37 24 4
gpt4 key购买 nike

#include <iostream>
#include <unordered_set>
#include <memory>

enum Config
{
NO_NEW_LINE,
TO_FILE,
NO_CONSOLE
};

int main()
{
std::shared_ptr<std::unordered_set<Config>> configurations;
configurations->emplace(Config::NO_NEW_LINE);
if (configurations->find(Config::NO_NEW_LINE) == configurations->end())
std::cout << "nothing found " << std::endl;

return 0;
}

我不知道为什么这段代码会出现段错误。

这是 gdb(在命名空间 SLog 中)

0x00005555555b2a1a in std::_Hashtable<SLog::Config, SLog::Config, std::allocator<SLog::Config>, std::__detail::_Identity, std::equal_to<SLog::Config>, std::hash<SLog::Config>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, true, true> >::_M_bucket_index (this=0x0, __k=@0x7fffffffdbb4: SLog::NO_NEW_LINE, __c=0) at /usr/include/c++/7/bits/hashtable.h:631
631 { return __hash_code_base::_M_bucket_index(__k, __c, _M_bucket_count); }

最佳答案

你的 shared_ptr 不管理任何东西。它相当于:

std::unordered_set<Config>* configurations;

在旧世界。

您可以通过以下方式轻松修复它:

configurations.reset(new std::unordered_set<Config>);

或者按照@user4581301 的建议:

auto configurations = std::make_shared<std::unordered_set<Config>>();

关于c++ - 枚举的 std::unordered_set,调用 find 给出段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57651712/

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