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


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


C++ 中的iswgraph() 函数检查给定的宽字符是否具有图形表示。

iswgraph() 函数在<cwctype> 头文件中定义。

iswgraph()原型

int iswgraph(wint_t ch);

iswgraph() 函数检查 ch 是否具有按当前 C 语言环境分类的图形表示。默认情况下,以下字符是图形:

  • 数字(0 到 9)
  • 大写字母(A 到 Z)
  • 小写字母(a 到 z)
  • 标点符号(!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~)

参数:

  • ch :要检查的宽字符。

返回:

  • 如果ch 具有图形表示字符,则iswgraph() 函数返回非零值。
  • 如果ch 没有图形表示字符,则返回零。

示例:iswgraph() 函数如何工作?

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

int main()
{
	setlocale(LC_ALL, "en_US.UTF-8");
	wchar_t ch1 = L'\u0009';
	wchar_t ch2 = L'\u03a9';
	
	iswgraph(ch1)? wcout << ch1 << L" has graphical representation" : wcout << ch1 << L" does not have graphical representation";
	wcout << endl;
	iswgraph(ch2)? wcout << ch2 << L" has graphical representation" : wcout << ch2 << L" does not have graphical representation";

	return 0;
}

运行程序时,输出将是:

 	 does not have graphical representation
Ω has graphical representation

相关用法


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