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


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


C++ 中的isgraph() 函数检查给定字符是否为图形字符。

isgraph() 原型

int isgraph(int ch);

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

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

如果 ch 的值不能表示为 unsigned char 或不等于 EOF,则 isgraph() 的行为未定义。

它在<cctype> 头文件中定义。

参数:

ch :要检查的字符。

返回:

如果 ch 是图形,isgraph() 函数返回非零值,否则返回零。

示例:isgraph() 函数的工作原理

#include <cctype>
#include <iostream>

using namespace std;

int main()
{
    char ch1 = '$';
    char ch2 = '\t';

    isgraph(ch1)? cout << ch1 << " has graphical representation" : cout << ch1 << " does not have graphical representation";
    cout << endl;
    isgraph(ch2)? cout << ch2 << " has graphical representation" : cout << ch2 << " does not have graphical representation";

    return 0;
}

运行程序时,输出将是:

$ has graphical representation
    does not have graphical representation

相关用法


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