gpt4 book ai didi

c++ - 在类内的 union 内访问 map 会出现段错误

转载 作者:太空宇宙 更新时间:2023-11-04 16:03:42 28 4
gpt4 key购买 nike

我正在尝试创建一个包含一种类型或另一种类型的映射的类,因此我决定使用匿名 union 。但是当我尝试访问映射时,我的代码给出了一个段错误(在这种情况下,我在构造函数和析构函数中都遇到了一个段错误):

#include <map>
#include <string>
#include <iostream>

class Foo
{
private:
union
{
std::map<std::string, int> ints;
std::map<std::string, std::string> strings;
};

bool fooContainsInts;

public:

Foo(bool containsInts) : fooContainsInts(containsInts)
{
if (containsInts) {ints = std::map<std::string, int>();}
else {strings = std::map<std::string, std::string>();}
}

~Foo()
{
if (fooContainsInts) {ints.clear();}
else {strings.clear();}
}
};

int main()
{
std::cout << "No segfault here!" << std::endl;
Foo foo(true);
std::cout << "This line doesn't get printed" << std::endl;
return 0;
}

最佳答案

我会建议模板化类型而不是 union ,但也许这对你有帮助。

http://en.cppreference.com/w/cpp/language/union

第二个例子告诉你如何处理非 POD union 成员。

应该是这样的

    Foo(bool containsInts) : fooContainsInts(containsInts) 
{
if (containsInts) { new (&ints) std::map<std::string, int>;}
else { new (&strings) std::map<std::string, std::string>;}
}

~Foo()
{
if (fooContainsInts) { ints.~map<std::string, int>(); }
else { strings.~map<std::string, std::string>(); }
}

虽然现在我无法在 MSCV 上测试它。

您需要显式构造和析构非 POD union 类型

关于c++ - 在类内的 union 内访问 map 会出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39146181/

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