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()用法及代码示例
- C++ boost::algorithm::all_of()用法及代码示例
- C++ bitset all()用法及代码示例
- C++ boost::algorithm::is_sorted()用法及代码示例
- C++ boost::algorithm::all_of_equal()用法及代码示例
- C++ boost::algorithm::any_of_equal()用法及代码示例
- C++ bit_and用法及代码示例
- C++ bitset operator[]用法及代码示例
- C++ boost::trim用法及代码示例
- C++ bitset to_ulong()用法及代码示例
- C++ bitset::flip()用法及代码示例
- C++ bitset none()用法及代码示例
- C++ boost::algorithm::any_of()用法及代码示例
- C++ basic_istream::peek()用法及代码示例
- C++ boost::algorithm::is_partitioned()用法及代码示例
- C++ boost::split用法及代码示例
- C++ bitset set()用法及代码示例
- C++ basic_istream::putback()用法及代码示例
- C++ basic_istream::unget()用法及代码示例
- C++ bitset flip()用法及代码示例
注:本文由纯净天空筛选整理自 C++ btowc()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。