codeforce能用万能头文件吗_C语言能不能使用万能头文件啊,如果可以应该怎么使用啊?...

并不是所有的编译器都支持万能头,也不是 C++标准的一部分。

并不建议使用万能头,因为它会包含很多不必要的头文件,增加编译时间,好好学习每个头文件都包含哪些东西,而不是总想着投机取巧。

如果比赛中的话,可以用用,减少工作量。

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.

Se e.g. GCC 4.8.0 /bits/stdc++.h source.

Using it would include a lot of unnecessary stuff and increases compilation time.

Edit: 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)

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. in C++

It is basically a header file that includes every standard library. In programming contests, using this file is a good idea, when you want to reduce the time wasted in doing chores; especially when your rank is time sensitive.

In programming contests, people do focus more on finding the algorithm to solve a problem than on software engineering. From, software engineering perspective, it is a good idea to minimize the include. If you use it actually includes a lot of files, which your program may not need, thus increases both compile time and program size unnecessarily.

Disadvantages of bits/stdc++bits/stdc++.h is not a standard header file of GNU C++ library. So, if you try to compile your code with some compiler other than GCC it might fail; e.g. MSVC do not have this header.

Using it would include a lot of unnecessary stuff and increases compilation time.

This header file is not part of the C++ standard and is therefore, non-portable, and should be avoided.

Moreover, even if there were some catch-all header in the standard, you would want to avoid it in lieu of specific headers, since the compiler has to actually read in and parse every included header (including recursively included headers) every single time that translation unit is compiled.Advantages of bits/stdc++In contests, using this file is a good idea, when you want to reduce the time wasted in doing chores; especially when your rank is time sensitive.

This also reduces all the chores of writing all the necessary header files.

You don’t have to remember all the STL of GNU C++ for every function you use.So, the user can either use it and save the time of writing every include or save the compilation time by not using it and writing necessary header files.

This article is contributed by Ayush Govil. If you like GeeksforGeeks and would like to contribute, you can also write an article using http://contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above

参考: in C++​www.geeksforgeeks.org

https://stackoverflow.com/questions/25311011/how-does-include-bits-stdc-h-work-in-c/25311198#25311198​stackoverflow.com

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值