Why does rand() compile without including cstdlib or using namespace std?(为什么 rand() 编译时不包含 cstdlib 或使用命名空间 std?)
问题描述
根据我正在阅读的书,rand() 在 C++ 中需要 #include
但是,我能够编译以下使用 rand() 的代码,而无需 #include <cstdlib> 或 using namespace std; 在 Visual 中工作室 2015.
为什么这两个不需要编译?我应该包括 cstdlib 吗?
According to the book I'm reading, rand() requires #include <cstdlib> in C++
However, I am able to compile the following code that uses rand() without #include <cstdlib> nor using namespace std; in Visual Studio 2015.
Why are these two not needed to compile? Should I include cstdlib?
C++ 代码:
#include <iostream>
int main()
{
std::cout << rand() << std::endl;
}
推荐答案
有两个问题在起作用:
- 标准库头文件可能包含其他标准库头文件.所以
iostream可以直接或间接包含cstdlib. - 具有 C 标准库等效项(例如
cstdlib)的头文件可以将 C 标准库名称带入全局命名空间,即在std命名空间之外(例如rand.)这是从 C++11 开始正式允许的,并且在之前被广泛容忍.
- Standard library header files may include other standard library header files. So
iostreammay includecstdlibdirectly or indirectly. - Header files with C-standard library equivalents (e.g.
cstdlib) are allowed to bring C standard library names into the global namespace, that is, outside of thestdnamespace (e.g.rand.) This is formally allowed since C++11, and was largely tolerated before.
这篇关于为什么 rand() 编译时不包含 cstdlib 或使用命名空间 std?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 rand() 编译时不包含 cstdlib 或使用命名空间 std?
基础教程推荐
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- c++ STL设置差异 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
