vanilla Qt creator 有 C++ std 库吗

Does the vanilla Qt creator have the C++ std library

基本上就是标题所说的。我是否必须将 .dll 包含到标准 C 库中,或者我是否可以在顶部编写#include(对于 input/output)以包含 header 文件。

简短的回答是 C++ std 库应该始终可用于任何 C++ IDE 或框架。

几乎所有的 C++ 编译器都包含 C++ std 库,因此除非您从事操作系统开发或类似的工作,否则您可以依赖可用的 std 库。通常,您不需要对 link 做任何特殊的事情,因为编译器会自动 link 所有 C++ 程序到 C++ std 库。