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