如何在 xcode 中包含 <stdio>? C++
How to include <stdio> in xcode? C++
你好
#include <stdio.h>
在 xcode?
我得到了所有这些错误。
为了std::ofstream
你#include <fstream>
。
对于 std::string
你 #include <string>
.
<stdio.h>
是 printf
或 fopen
等函数所需的 C 头文件。它是这样包含的:#include <stdio.h>
。在 C++ 中,最好改为 #include <cstdio>
,因此所有名称都嵌入在 namespace std
中(因此您应该使用 std::printf
等)。
你是 C 程序员吧?
<stdio.h>
是 C 的 I/O 库。我认为您正在寻找这个(C++ 的 I/O 库):
#include <iostream>
你好
#include <stdio.h>
在 xcode?
我得到了所有这些错误。
为了std::ofstream
你#include <fstream>
。
对于 std::string
你 #include <string>
.
<stdio.h>
是 printf
或 fopen
等函数所需的 C 头文件。它是这样包含的:#include <stdio.h>
。在 C++ 中,最好改为 #include <cstdio>
,因此所有名称都嵌入在 namespace std
中(因此您应该使用 std::printf
等)。
你是 C 程序员吧?
<stdio.h>
是 C 的 I/O 库。我认为您正在寻找这个(C++ 的 I/O 库):
#include <iostream>