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


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。