-1
A
回答
3
爲std::ofstream
你#include <fstream>
。
對於std::string
您#include <string>
。
<stdio.h>
是功能所需的C頭,如printf
或fopen
。它包括這樣的:#include <stdio.h>
。在C++中,最好是#include <cstdio>
,因此所有名稱都嵌入在namespace std
中(因此您應該使用std::printf
等)。
-1
你是C程序員吧?
<stdio.h>
是C的I/O庫。我想你正在尋找這個(C++的I/O庫):
#include <iostream>
相關問題
- 1. 如何在Xcode中包含.a庫?
- 2. 如何包含Fnv_hash <> :: hash C++ 11
- 3. C++ <mysql/mysql.h>如何包含它?
- 4. 如何在Xcode項目中包含C++ Actor Framework?
- 5. 如何在xcode 4.3中包含C++標準庫
- 6. 如何在mongodb中包含$ lt和$ divide
- 7. 必須包含\ n Xcode C
- 8. xcode c包含文件
- 9. 在Xcode中包含建議
- 10. 如何在Visual Studio C++項目中包含<sys/select.h>庫?
- 11. 在JSP中如何在<%%>中包含<HTML>?
- 12. 包含在Xcode的
- 13. 如何從包含在C#
- 14. 如何將lua腳本語言包含到C++ XCode中?
- 15. 如何將OpenCV包含到XCode 4 C++項目中?
- 16. 在Xcode 5中包含一個包
- 17. 在xCode中導入包含<>符號的.h文件?
- 18. C#對包含在Dictionary <String,ObjectType>
- 19. 如何在C++ 4.4.6中包含hash_map?
- 20. 如何在C++中包含外部庫?
- 21. 如何鏈接包含在C++中?
- 22. 如何實現在C中包含
- 23. 在Xcode 4.2.1項目中包含標題
- 24. C++:包含在包含內
- 25. 如何在Xcode項目中包含libzip庫?
- 26. 如何在xcode項目中設置包含路徑
- 27. 在XCode中包裝C++庫
- 28. 如何在jpeglib.h中包含<stdio.h>(jpeg-8c)
- 29. 包含帶Xcode的外部C庫
- 30. C++ Xcode,如何包含並聲明我的對象
是否安裝了命令行工具? – albertoqa
如何檢查?順便說一句,我所做的是Xcode->新建 - >項目 - > OSX應用程序 - >命令行工具 –
在終端中運行'$ xcode-select -p',輸出是什麼? – albertoqa