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