gpt4 book ai didi

c++ - 看不见的 C++ 语法

转载 作者:太空狗 更新时间:2023-10-29 23:34:25 26 4
gpt4 key购买 nike

一个 friend 发给我这个,我真的不知道它是什么,在循环中。不管它是什么,它都会调用 std::set 构造函数 50 万次……感谢任何帮助。我预计会出现编译器错误,但它实际上是在 g++ 4.4 和 4.5 中编译的,并且行为与复制构造不同...

#include <stdio.h>
#include <stdlib.h>
#include <boost/unordered_map.hpp>
#include <set>
#include <string>

typedef boost::unordered_map<int, std::set<int> > mymap;

int main () {
mymap map;
for ( int i = 0 ; i < 1000 ; i++ )
{
std::set<int> map[i] ;
}
return 1;
};

最佳答案

您正在处理 C++ 语言的特定于 GCC 的非标准扩展。每次迭代都定义一个包含 i 元素的 std::map 对象数组(并立即销毁它)。

在标准 C++ 中,使用非常量表达式指定数组大小是非法的,因此代码不是合法的 C++。它再次编译,只是因为 GCC 允许它作为扩展。

关于c++ - 看不见的 C++ 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3904066/

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