Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我是 C++ 的 Netbeans IDE 的新手。我希望支持 STL 集合,如列表、堆栈和 netbeans 中的所有内容。我正在其中编写以下代码,并在“列表”单词和无法解析标识符列表的消息下方出现红线。我该怎么办 ?
#include <iostream> #include <list> int main () { std::list<int> first; return 0; }
编辑:提到我的代码中包含的头文件。
您是否通过以下方式制作了 netbeans 项目?文件 -> 新项目 .. -> C/C++ -> C/C++ 应用程序
我这样做了,将您的代码粘贴到 main.cpp 中,并且可以无错误地编译。
(网豆 7.2.1)