在map中,是否保证int初始化为零?

发布于 2024-12-07 19:27:46 字数 361 浏览 0 评论 0原文

比如,统计一下书中的单词出现次数,我看到有人简单地写道:

map<string, int> count;
string s;
while (cin >> s) count[s]++;

这是正确的做法吗?我在我的机器上测试过,似乎是这样。但是初始化为零能保证吗?如果不是,我会想象这样的代码:

map<string, int> count;
string s;
while (cin >> s)
    if (count.find(s) != count.end())  count[s]++;
    else count[s] = 1;

For example, count the occurrence the words in a book, I saw somebody simply wrote:

map<string, int> count;
string s;
while (cin >> s) count[s]++;

Is this the correct way of doing so? I tested on my machine and seems so. But is the initialization to zero guaranteed? If it is not, I would imagine a code like this:

map<string, int> count;
string s;
while (cin >> s)
    if (count.find(s) != count.end())  count[s]++;
    else count[s] = 1;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看透却不说透 2024-12-14 19:27:46

是的,std::map 上的 operator[] 将使用 T() 初始化值,在 int 的情况下,为零。

C++ 标准第 23.4.4.3 节对此进行了记录:

T&运算符[](const key_type&x);

效果:如果地图中没有与 x 等效的键,则插入
value_type(x, T()) 进入地图。

Yes, operator[] on a std::map will initialize the value with T(), which in the case of int, is zero.

This is documented on section 23.4.4.3 of the C++ standard:

T& operator[](const key_type& x);

Effects: If there is no key equivalent to x in the map, inserts
value_type(x, T()) into the map.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文