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


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


C++ 中的iswcntrl() 函數檢查給定的寬字符是否是控製字符。

iswcntrl() 函數在<cwctype> 頭文件中定義。

iswcntrl()原型

int iswcntrl(wint_t ch);

iswcntrl() 函數檢查ch 是否為控製字符。默認情況下,代碼從 0x00 到 0x1F 和 0x7F 的字符被視為控製字符。

參數:

  • ch :要檢查的寬字符。

返回:

  • 如果ch 是控製字符,iswcntrl() 函數將返回非零值。
  • 如果ch 不是控製字符,則返回零。

示例:iswcntrl() 函數如何工作?

#include <cwctype>
#include <iostream>
using namespace std;

int main()
{
	wchar_t ch1 = L'\u000c';// unicode for form feed
	wchar_t ch2 = L'\u03a3';// unicode for Σ
	
	cout << hex << showbase << boolalpha << "iswcntrl(" << (wint_t)ch1 << ") returned " << (bool)iswcntrl(ch1) << endl;
	cout << hex << showbase << boolalpha << "iswcntrl(" << (wint_t)ch2 << ") returned " << (bool)iswcntrl(ch2) << endl;

	return 0;
}

運行程序時,輸出將是:

iswcntrl(0xc) returned true
iswcntrl(0x3a3) returned false

相關用法


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