std::putwchar
来自 cppreference.com
在头文件 <cwchar> 中定义 |
||
std::wint_t putwchar( wchar_t ch ); |
||
将宽字符 ch 写入 stdout。
内容 |
[编辑] 参数
ch | - | 要写入的宽字符 |
[编辑] 返回值
成功时为 ch,失败时为 WEOF。
[编辑] 示例
运行此代码
#include <clocale> #include <cstdio> #include <cstdlib> #include <cwchar> #include <initializer_list> int main() { std::setlocale(LC_ALL, "en_US.utf8"); for (const wchar_t ch : { L'\u2200', // Unicode name: "FOR ALL" L'∀', L'\n' }) if (std::putwchar(ch) == WEOF) { std::puts("I/O error in std::putwchar"); return EXIT_FAILURE; } return EXIT_SUCCESS; }
可能的输出
∀∀
[编辑] 另请参阅
将字符写入 stdout (函数) | |
将宽字符写入文件流 (函数) | |
C 文档 putwchar 的文档
|