std::fputws
来自 cppreference.com
定义在头文件 <cwchar> 中 |
||
int fputws( const wchar_t* str, std::FILE* stream ); |
||
将空终止的宽字符串 str
中的每个宽字符写入输出流 stream
,如同通过重复执行 std::fputwc 一样。
不会写入 str
中的终止空宽字符。
内容 |
[编辑] 参数
str | - | 要写入的空终止宽字符串 |
stream | - | 输出流 |
[编辑] 返回值
成功时,返回一个非负值
失败时,返回 EOF 并在 stream
上设置错误指示器(参见 std::ferror)。
[编辑] 示例
运行此代码
#include <clocale> #include <cstdio> #include <cwchar> int main() { std::setlocale(LC_ALL, "en_US.utf8"); int rc = std::fputws(L"御休みなさい", stdout); if (rc == EOF) std::perror("fputws()"); // POSIX requires that errno is set }
可能的输出
御休みなさい
[编辑] 参见
将字符字符串写入文件流 (函数) | |
将格式化的宽字符输出打印到 stdout、文件流或缓冲区 (函数) | |
fputws |
将宽字符串写入文件流 (函数) |
从文件流中获取宽字符串 (函数) | |
C 文档 适用于 fputws
|