std::btowc
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
std::wint_t btowc( int c ); |
||
。一个单字节字符
c
扩大其广泛的字符相当于.原文:
Widens a single-byte character
c
to its wide character equivalent.。多字节字符编码使用单字节码来表示ASCII字符集的字符。此功能可用于将此类字符wchar_t.
原文:
Most multibyte character encodings use single-byte codes to represent the characters from the ASCII character set. This function may be used to convert such characters to wchar_t.
[编辑] 。参数。
c | - | 。单字节字符扩大。
|
===。
返回值。===
WEOF if c
is EOF.
。宽字符表示
c
如果(unsigned char)c是一个有效的单字节字符的初始位移状态,WEOF否则.原文:
Wide character representation of
c
if (unsigned char)c is a valid single-byte character in the initial shift state, WEOF otherwise.[编辑] 。为例。
#include <cwchar> #include <cstdio> #include <clocale> int main() { std::setlocale(LC_ALL, ""); std::wprintf(L"wide: %lc\nwidened from narrow: %lc\n", L'a', std::btowc('a')); }
输出:
wide: a widened from narrow: a
[编辑] 。另请参阅。
缩小了宽到窄字符的单字节字符,如果可能的话 原文: narrows a wide character to a single-byte narrow character, if possible (函数) | |
[虚]</div></div>
|
将一个或多个字符从 char charT 原文: converts a character or characters from char to charT (虚拟保护成员函数of std::ctype )
|
C documentation for btowc
|