C++ 本地化库 - isdigit



描述

它检查字符是否为十进制数字。

声明

以下是 std::isdigit 的声明。

C++98

int isdigit ( int c );

C++11

int isdigit ( int c );

参数

c − 要检查的字符,转换为 int 类型,或 EOF。

返回值

它返回一个非零值。

异常

无异常保证 − 此函数从不抛出异常。

示例

以下为 std::isdigit 的示例。

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
int main () {
   char str[]="2016ad";
   int year;
   if (isdigit(str[0])) {
      year = atoi (str);
      printf ("The year that followed %d was %d.\n",year,year+1);
   }
   return 0;
}

示例输出应如下所示:

 The year that followed 2016 was 2017.
locale.htm
广告