gpt4 book ai didi

c++ - 使用 std::uint8_t 作为键初始化 map 时的警告

转载 作者:行者123 更新时间:2023-12-02 09:47:41 24 4
gpt4 key购买 nike

问题

我正在尝试创建 std::uint8_t -> char 的映射,并使用一些值初始化它:

const std::map<std::uint8_t, char> ScenarioReader::alphabet = {
{ 0x12, 'b' },
{ 0x13, 'c' },
{ 0x15, 'a' },
{ 0x16, 'f' },
...
}

这会生成编译器警告,因为这些整数文字(0x12等)被识别为无符号整数,它们大于std::uint8_t :

1>d:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\utility(172): warning C4244: 'initializing': conversion from '_Ty' to '_Ty1', possible loss of data
1> with
1> [
1> _Ty=unsigned int
1> ]
1> and
1> [
1> _Ty1=uint8_t
1> ]
1>d:\my-project\src\myfile.cpp(75): note: see reference to function template instantiation 'std::pair<const _Kty,_Ty>::pair<unsigned int,char,0>(_Other1 &&,_Other2 &&) noexcept' being compiled
1> with
1> [
1> _Kty=uint8_t,
1> _Ty=char,
1> _Other1=unsigned int,
1> _Other2=char
1> ]
1>d:\my-project\src\myfile.cpp(12): note: see reference to function template instantiation 'std::pair<const _Kty,_Ty>::pair<unsigned int,char,0>(_Other1 &&,_Other2 &&) noexcept' being compiled
1> with
1> [
1> _Kty=uint8_t,
1> _Ty=char,
1> _Other1=unsigned int,
1> _Other2=char
1> ]

解决方案

我知道有两种可能的方法来解决此问题:

1) 禁用此部分的警告

#pragma warning( push )
#pragma warning( disable : 4244 )
const std::map<std::uint8_t, char> ScenarioReader::alphabet = {
{ 0x12, 'b' },
{ 0x13, 'c' },
{ 0x15, 'a' },
{ 0x16, 'f' },
...
}
#pragma warning( pop)

2)显式转换每个键

const std::map<std::uint8_t, char> ScenarioReader::alphabet = {
{ static_cast<std::uint8_t>(0x12), 'b' },
{ static_cast<std::uint8_t>(0x13), 'c' },
{ static_cast<std::uint8_t>(0x15), 'a' },
{ static_cast<std::uint8_t>(0x16), 'f' },
...
}

我对这两种方法都不是特别满意,但第二种对我来说尤其难看。

我是否缺少一个更简单的解决方案?

最佳答案

integer literal永远不可能是 std::uint8_t。您可以创建 explicit cast 而不是使用 static_cast字面意思:

const std::map<std::uint8_t, char> alphabet = {
{ std::uint8_t(0x12), 'b' },
{ std::uint8_t(0x13), 'c' },
{ std::uint8_t(0x15), 'a' },
{ std::uint8_t(0x16), 'f' },
};

关于c++ - 使用 std::uint8_t 作为键初始化 map 时的警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64098003/

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