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


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


如果在初始移位状态下等效的多字节字符为单个字节,则C++中的wctob()函数有助于将宽字符wc转换为单个字节。由于该函数使用单字节编码,因此用于ASCII字符集中的字符。

用法:

int wctob (wint_t wc);

参数:上面的函数接受单个参数,如下所述:


  • wc:这是wctob()函数接受的唯一参数,它是需要缩小/转换的宽字符。

返回类型:如果该函数对应于初始状态下单字节长度的多字节字符,则该函数返回宽字符wc的单字节表示形式。否则,它将返回EOF(文件末尾)。

以下示例程序旨在说明上述函数:

示例1:

// Program illustrating 
// wctob() function 
#include <bits/stdc++.h> 
  
// function implementing the wctob() function 
int fun() 
{ 
  
    int i, num; 
    const wchar_t wc[] = L"priya lal"; 
  
    num = 0; 
    for (i = 0; i < wcslen(wc); ++i) 
        if (wctob(wc[i]) != EOF) 
            ++num; 
  
    // prints the numbers of characters 
    // needed to be translated 
    wprintf(L"wc has %d characters to be translated"
            "to single-byte characters.", 
            num); 
} 
  
// Driver Program 
int main() 
{ 
    fun(); 
    return 0; 
}
输出:
wc has 9 characters to be translatedto single-byte characters.

示例2:

// C++ program illustrating the wctob() function 
#include <bits/stdc++.h> 
  
// function implementing the wctob() function 
void fun(wchar_t wc) 
{ 
  
    int cn = wctob(wc); 
    if (cn != EOF) 
  
        printf("%#x translated to %#x\n", wc, cn); 
  
    else
  
        printf("%#x could not be translated\n", wc); 
} 
  
// Driver Program 
int main(void) 
{ 
    char* utf_locale_present 
        = setlocale(LC_ALL, "th_TH.utf8"); 
  
    // prints the result of the function 
    puts("In Thai UTF-8 locale:"); 
    fun(L'a'); 
    fun(L'?'); 
}
输出:
In Thai UTF-8 locale:
0x61 translated to 0x61
0x3f translated to 0x3f


相关用法


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