2
A
回答
3
cin
爲對象的istream
類
+0
*'istream',而不是'iostream' –
+0
不是'iostream'。這是'istream'的一個對象。 –
4
C++標準§27.4.1 [iostream.objects.overview]
#include <ios> #include <streambuf> #include <istream> #include <ostream> namespace std { extern istream cin; extern ostream cout; extern ostream cerr; extern ostream clog; extern wistream wcin; extern wostream wcout; extern wostream wcerr; extern wostream wclog; }
P1頭聲明對象與 通過所提供的標準C流相關聯的對象的在 (27.9.2)中聲明的函數,並且包括使用所需的所有頭文件這些 對象。
您還可以看看gcc的implementation on github:
namespace std _GLIBCXX_VISIBILITY(default) { _GLIBCXX_BEGIN_NAMESPACE_VERSION // Standard stream objects. // NB: Iff <iostream> is included, these definitions become wonky. typedef char fake_istream[sizeof(istream)] __attribute__ ((aligned(__alignof__(istream)))); typedef char fake_ostream[sizeof(ostream)] __attribute__ ((aligned(__alignof__(ostream)))); fake_istream cin; fake_ostream cout; fake_ostream cerr; fake_ostream clog; #ifdef _GLIBCXX_USE_WCHAR_T typedef char fake_wistream[sizeof(wistream)] __attribute__ ((aligned(__alignof__(wistream)))); typedef char fake_wostream[sizeof(wostream)] __attribute__ ((aligned(__alignof__(wostream)))); fake_wistream wcin; fake_wostream wcout; fake_wostream wcerr; fake_wostream wclog; #endif _GLIBCXX_END_NAMESPACE_VERSION } // namespace
相關問題
- 1. 什麼類型的數據庫是data.frame?
- 2. 這是什麼類型的數據庫?
- 3. clock()的數據類型是什麼?
- 4. 這是什麼類型的GPS數據?
- 5. vptr的數據類型是什麼?
- 6. WINOLEAPI的C#數據類型是什麼?
- 7. unix_timestamp(MySQL)的數據類型是什麼?
- 8. ActionScript *數據類型 - 它是什麼?
- 9. 什麼是無符號數據類型?
- 10. 什麼是'長?'數據類型?
- 11. 什麼數據類型是$('#checkbox')。attr('checked')
- 12. 什麼是抽象數據類型(ADT)?
- 13. 這應該是什麼數據類型?
- 14. Bool * X,這是什麼數據類型?
- 15. 輸出是什麼數據類型?
- 16. 什麼是REBOL結構!數據類型?
- 17. 這是什麼Ruby數據類型?
- 18. python這是什麼數據類型?
- 19. 什麼是MLSLABEL Oracle數據類型?
- 20. 什麼是列數據類型Sharepoint列數據類型中的業務數據?
- 21. cout/cin究竟是什麼?
- 22. 什麼是類型和什麼是類型構造函數scala
- 23. 這是什麼類型的數據類型?
- 24. iOSK:ABRecordRef是什麼類型的數據類型?
- 25. 什麼是oracle數據類型raw的java類型等價物?
- 26. 什麼是相應的C++數據類型爲SQL數字(18,0)數據類型?
- 27. 告訴什麼類型的數據是什麼,Python
- 28. 成功數據的類型是什麼:函數(數據)?
- 29. 什麼是抽象數據類型?它是Java中的類嗎?
- 30. ruby中類的名稱的數據類型(類)是什麼?
互聯網是你的朋友...'cin'是'istream'類類型的對象。嘗試在您最喜愛的搜索引擎上使用'cin'類型! –