basic_ostream::put
在資料流的字元。
basic_ostream<_Elem, _Tr>& put(
char_type _Ch
);
參數
- _Ch
字元。
傳回值
basic_ostream 對物件的參考。
備註
未格式化輸出函式插入這個項目的 _Ch。 它會傳回 *this。
範例
// basic_ostream_put.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
cout.put( 'v' );
cout << endl;
wcout.put( L'l' );
}
需求
標題: <ostream>
命名空間: std