How does #include lt;bits/stdc++.hgt; work in C++?(#include lt;bits/stdc++.hgt;在 C++ 中工作?)
问题描述
我从 codeforces 博客中了解到,如果我们添加 #include <bits/stdc++.h>
在 C++
程序中,则不需要包含任何其他头文件.#include
#include
是如何工作的,是否可以使用它而不是包含单个头文件?
I have read from a codeforces blog that if we add #include <bits/stdc++.h>
in a C++
program then there is no need to include any other header files. How does #include <bits/stdc++.h>
work and is it ok to use it instead of including individual header files?
推荐答案
它基本上是一个头文件,还包括每个标准库和 STL 包含文件.我能看到它的唯一目的是测试和教育.
It is basically a header file that also includes every standard library and STL include file. The only purpose I can see for it would be for testing and education.
参见例如GCC 4.8.0/bits/stdc++.h 源码一>.
使用它会包含很多不必要的东西并增加编译时间.
Using it would include a lot of unnecessary stuff and increases compilation time.
正如尼尔所说,它是预编译头的实现.如果您正确地将它设置为预编译,它实际上可以根据您的项目加快编译时间.(https://gcc.gnu.org/onlinedocs/gcc/Precompiled-Headers.html)
As Neil says, it's an implementation for precompiled headers. If you set it up for precompilation correctly it could, in fact, speed up compilation time depending on your project. (https://gcc.gnu.org/onlinedocs/gcc/Precompiled-Headers.html)
但是,我建议您花时间了解每个 sl/stl 标头并单独包含它们,并且除了预编译目的之外不要使用超级标头".
I would, however, suggest that you take time to learn about each of the sl/stl headers and include them separately instead, and not use "super headers" except for precompilation purposes.
这篇关于#include <bits/stdc++.h>在 C++ 中工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:#include <bits/stdc++.h>在 C++ 中工作?
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01