std::fputws
STD::fputws
Defined in header | | |
---|---|---|
int fputws( const wchar_t* str, std::FILE* stream | | |
从以空结尾的宽字符串写入每个宽字符。str
到输出流stream
,好像通过反复执行std::fputwc
...
终止空宽字符的str
不是写的。
参数
str | - | null-terminated wide string to be written |
---|---|---|
stream | - | output stream |
返回值
在成功时,返回一个非负值.
失败时,返回EOF
并设置误差
指标%28见std::ferror
29%stream
...
例
二次
#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
}
二次
产出:
二次
御休みなさい
二次
另见
fputs | writes a character string to a file stream (function) |
---|---|
wprintffwprintfswprintf | prints formatted wide character output to stdout, a file stream or a buffer (function) |
fputws | writes a wide string to a file stream (function) |
fgetws | gets a wide string from a file stream (function) |
c fputws文档
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。