當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ iswcntrl()用法及代碼示例


iswcntrl()是C++ STL中的內置函數,該函數檢查給定的寬字符是否為控製字符。它在C /C++的cwctype頭文件中定義。

用法:

int iswcntrl(wint_t ch)

參數:該函數接受單個強製性參數ch,該參數指定寬字符,我們必須檢查該寬字符是否為控製字符。


返回值:該函數返回兩個值,如下所示:

  • 如果ch是控製字符,則返回非零值。
  • 如果不是,則返回0。

以下示例程序旨在說明上述函數。
示例1:

// C++ program to illustrate the 
// iswcntrl() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    wchar_t ch1 = L'\n'; 
  
    // checks if it is a control character 
    if (iswcntrl(ch1)) 
        wcout << "It is a control Character"; 
  
    else
        wcout << "It is not a control Character"; 
    return 0; 
}
輸出:
It is a control Character

示例2:

// C++ program to illustrate the 
// iswcntrl() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    wchar_t ch1 = L'@'; 
  
    // checks if it is a control character 
    if (iswcntrl(ch1)) 
        wcout << "It is a control Character"; 
  
    else
        wcout << "It is not a control Character"; 
  
    return 0; 
}
輸出:
It is not a control Character


相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 iswcntrl() function in C/C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。