我想使用std::streamoff
和std::streamsize
類型,而不需要拉動iostream庫的很大一部分。現在,我包括<iostream>
標題。有沒有更好的方法來進行?要使用std :: streamoff和std :: streamsize包含哪個頭?
1
A
回答
5
它們在包頭<ios>
3
#include <ios>
定義應該是足夠的。
1
爲了將來的參考,儘管網站並不完美,但如果您想知道確切的標題所在的位置,那麼cplusplus.com就足夠了。在這種情況下,它位於尖括號的右上角<ios>
。
+0
我曾多次訪問過cplusplus.com,但我從未見過小尖括號。你值得擁有一個調查員徽章! – overcoder
相關問題
- 1. std :: streampos,std :: streamoff和std :: streamsize long long int?
- 2. 要調用`cout << std :: vector <_Ty>`包含哪個頭?
- 3. 如果我想使用std :: shared_ptr,包含哪個頭文件?
- 4. 聲明大小爲STD數組:: streamoff
- 5. Std :: map \ std :: set包含重複鍵
- 6. std ::包含std :: function的列表
- 7. std :: cin.ignore(std :: numeric_limits <std :: streamsize> :: max(),'\ n')使用時出現錯誤#include <Windows.h>
- 8. 不能使用std :: iota和std :: set
- 9. 包含std :: strings和std :: vector的地圖<Another_Struct>
- 10. 包含std :: function <T()>和std :: function <T(int)>
- 11. 使用包含std :: unique_ptr的std :: vector構造一個類時出現錯誤
- 12. std :: uniform_real_distribution包含範圍
- 13. 正確使用std :: shared_ptr和std :: auto_ptr
- 14. 如何使用std :: bind與std :: function和std :: map
- 15. 使用std :: sscanf和std :: string的C++
- 16. std :: bind和std :: weak_ptr
- 17. 通過使用std :: get,std :: tuple_size,std :: tuple_element
- 18. 如何用std :: set包含我的類
- 19. C++ 11 std ::函數和std ::引用包裝用於排序std :: set
- 20. std :: enable_if和std :: shared_ptr
- 21. 混淆使用std ::少和std ::有更大的std ::排序
- 22. 使用std :: vector <T*> :: push_back與std :: mem_fun和std :: bind1st
- 23. 使用std :: thread與std :: mutex
- 24. 澄清使用std ::,std :: cout
- 25. 強制std :: tuple包含std :: pair <fixed_type,T>
- 26. 靜態std ::數組的結構包含std :: string
- 27. 瞭解std :: hardware_destructive_interference_size和std :: hardware_constructive_interference_size
- 28. 使用std :: ifstream的,的std :: istream_iterator和std ::複製不讀書整個文件
- 29. std :: any_cast()和std :: get_if(std :: variant)是否需要將指針作爲參數?
- 30. PERROR和std :: CERR使用
+1你的速度更快。 – karlphillip
非常感謝您的快速回答! – overcoder