当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ btowc()用法及代码示例


C++ 中的btowc() 函数将字符转换为其等效的宽字符。

btowc() 函数在<cwchar> 头文件中定义。

btowc()原型

wint_t btowc( int c );

btowc() 函数将单字节字符 c 作为其参数,并返回其等效的宽字符。

参数:

  • c :要转换为宽字符的单字节字符。

返回:

如果 c 是有效的单字节字符,btowc() 函数将返回 c 的宽字符表示。如果 c 是 EOF,则返回 WEOF。

示例:btowc() 函数如何工作?

#include <cwchar>
#include <cstring>
#include <iostream>
using namespace std;

int main()
{
	char str[] = "Hello\xf4\xdf";
	wchar_t wc;
	int count = 0;
	
	for (int i=0; i<strlen(str); i++)
	{
		wc = btowc(str[i]);
		if (wc != WEOF)
		count++;
	}
	
	cout << count << " out of " << strlen(str) << " characters were successfully widened";
	return 0;
}

运行程序时,输出将是:

5 out of 7 characters were successfully widened

相关用法


注:本文由纯净天空筛选整理自 C++ btowc()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。