为什么我们在 Turbo C++ 中使用 <iostream.h>?
Why do we use <iostream.h> in Turbo C++?
我有点怀疑为什么我们在 iostream
之后使用“.h”而不包括 using namespace std;
因为对于任何其他编译器我们不在 iostream 之后使用“.h”并且我们添加始终使用 using namespace std;
。
为什么?
why do we use <iostream.h>
in turbo c++ IDE
因为 turbo c++ IDE 使用 turbo c++ 编译器,它是在 c++ 标准化之前编写的。在该语言的古老方言中,STL header 的命名与我们在标准中的标准库 header 不同。
也就是说,在现实世界中很少有人使用 turbo c++。
and add always use using namespace std;
没有。 我们从不使用using namespace std;
。 你也不应该。
但特别是在 turbo C++ 方言中,该语言还没有命名空间。
我有点怀疑为什么我们在 iostream
之后使用“.h”而不包括 using namespace std;
因为对于任何其他编译器我们不在 iostream 之后使用“.h”并且我们添加始终使用 using namespace std;
。
为什么?
why do we use
<iostream.h>
in turbo c++ IDE
因为 turbo c++ IDE 使用 turbo c++ 编译器,它是在 c++ 标准化之前编写的。在该语言的古老方言中,STL header 的命名与我们在标准中的标准库 header 不同。
也就是说,在现实世界中很少有人使用 turbo c++。
and add always use using namespace std;
没有。 我们从不使用using namespace std;
。 你也不应该。
但特别是在 turbo C++ 方言中,该语言还没有命名空间。