C++輸入和輸出
在C++里std::cin、std::cout、std::cerr和std::endl分別是標準輸入、標準輸出、標準錯誤輸出和刷新緩沖區并換行,它們都在命名空間std中,那么它們真實面目是什么?我們先來看一段代碼:
#include 《iostream》 int main() { std::cout 《《 “Hello World!” 《《 std::endl; std::cerr 《《 “error” 《《 std::endl; return 0; }
這段代碼很簡單,就是輸出“Hello world!”和“error”,那么這段代碼的底層原理是?我們先來看一下std::cout在標準庫中的定義:
#ifndef _LIBCPP_HAS_NO_STDOUT extern _LIBCPP_FUNC_VIS ostream cout; extern _LIBCPP_FUNC_VIS wostream wcout; #endif 。。.。。. typedef basic_streambuf《char》 streambuf; typedef basic_istream《char》 istream; typedef basic_ostream《char》 ostream; typedef basic_iostream《char》 iostream;
。。.。。. template 《class _CharT, class _Traits》 class _LIBCPP_TEMPLATE_VIS basic_ostream : virtual public basic_ios《_CharT, _Traits》 { 。。.。。. };
從以上代碼我們可以看出std::cout是一個類basic_stream《char》的一個實例,那么很容易我們就能想到《《很有可能是類basic_stream《char》的一個成員函數,繼續追蹤下去,看看《《到底是啥。在類模板basic_stream中我們找到成員函數聲明如下:
basic_ostream& operator《《(bool __n); basic_ostream& operator《《(short __n);
basic_ostream& operator《《(unsigned short __n); basic_ostream& operator《《(int __n);
basic_ostream& operator《《(unsigned int __n); basic_ostream& operator《《(long __n);
basic_ostream& operator《《(unsigned long __n); basic_ostream& operator《《(long long __n);
basic_ostream& operator《《(unsigned long long __n); basic_ostream& operator《《(float __f);
basic_ostream& operator《《(double __f); basic_ostream& operator《《(long double __f); basic_ostream& operator《《(const void* __p); basic_ostream& operator《《(basic_streambuf《char_type, traits_type》* __sb);
充分證實了我們猜想,《《其實是成員函數operator《《并且返回值是basic_ostream&,到這里我們就可以看出std::cout 《《 “Hello World!”其實是basic_ostream實例變量cout調用成員函數operator《《輸出字符串“Hello World!”并返回basic_ostream&。
那么std::endl是不是某個類的實例呢?我們看看std::endl在標準庫的定義:
template 《class _CharT, class _Traits》 inline _LIBCPP_INLINE_VISIBILITY basic_ostream《_CharT, _Traits》& endl(basic_ostream《_CharT, _Traits》& __os) { __os.put(__os.widen(‘ ’)); __os.flush(); return __os; }
從代碼里可以看出,std::endl其實是一個函數模板,調用該函數會將一個換行符“ ”放入緩沖區,并刷新緩沖區,最后返回basic_ostream&。到這里我們終于明白std::cout 《《 “Hello World!” 《《 std::endl;的含義了,basic_ostream實例變量cout調用成員函數operator《《輸出字符串“Hello World!”,返回basic_ostream&并繼續調用成員函數operator《《輸出換行符并刷新輸出緩沖區。
現在我們很容易想到std::cerr和std::cout應該差不多,區別則是std::cerr是標準錯誤輸出,將信息輸出到標準錯誤流。std::cerr定義如下:
extern _LIBCPP_FUNC_VIS ostream cerr; extern _LIBCPP_FUNC_VIS wostream wcerr; extern _LIBCPP_FUNC_VIS ostream clog; extern _LIBCPP_FUNC_VIS wostream wclog;
最后我們看看std::cin到底是什么玩意,先來看下下面這段代碼:
#include 《iostream》 int main() { std::string name; std::cin 》》 name; return 0; }
代碼很簡單,就是想通過標準輸入輸入名字,并保存在變量name中。有了上面的經驗,我們很容易想到std::cin應該是某個類的實例變量,而》》則是類的成員函數。std::cin的定義如下:
#ifndef _LIBCPP_HAS_NO_STDIN extern _LIBCPP_FUNC_VIS istream cin; extern _LIBCPP_FUNC_VIS wistream wcin; #endif 。。.。。. typedef basic_streambuf《char》
streambuf; typedef basic_istream《char》 istream; typedef basic_ostream《char》 ostream; typedef basic_iostream《char》 iostream;
。。.。。. template 《class _CharT, class _Traits》 class _LIBCPP_TEMPLATE_VIS basic_istream : virtual public basic_ios《_CharT, _Traits》 { 。。.。。. };
從代碼中可以看出std::cin是類basic_istream《char》的實例變量,且basic_istream是類模板。下面我們看看》》在basic_istream中聲明:
basic_istream& operator》》(basic_streambuf《char_type, traits_type》* __sb);
basic_istream& operator》》(bool& __n); basic_istream& operator》》(short& __n);
basic_istream& operator》》(unsigned short& __n); basic_istream& operator》》(int& __n);
basic_istream& operator》》(unsigned int& __n); basic_istream& operator》》(long& __n);
basic_istream& operator》》(unsigned long& __n); basic_istream& operator》》(long long& __n);
basic_istream& operator》》(unsigned long long& __n); basic_istream& operator》》(float& __f);
basic_istream& operator》》(double& __f); basic_istream& operator》》(long double& __f);
basic_istream& operator》》(void*& __p);
不出我們所料》》確實是成員函數operator》》并返回basic_istream&,那么這段代碼std::cin》》name就很容易理解了,basic_istream《char》類實例變量cin調用成員函數operator》》從標準輸入輸入數據,并保存在變量name中。到這里std::cout、std::cin、std::cerr和std::endl的含義終于真相大白了!
責任編輯:haq
-
函數
+關注
關注
3文章
4327瀏覽量
62571 -
C++
+關注
關注
22文章
2108瀏覽量
73619
原文標題:std::cin、std::cout、std::cerr和std::endl在C++里的真實面目
文章出處:【微信號:AndroidPush,微信公眾號:Android編程精選】歡迎添加關注!文章轉載請注明出處。
發布評論請先 登錄
相關推薦
評論