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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。