function template
<locale>

std::isxdigit

template <class charT>  bool isxdigit (charT c, const locale& loc);
使用 locale 检查字符是否为十六进制数字
该函数模板使用 locale 的 ctype 属性检查 c 是否为十六进制数字字符,返回的结果与调用 ctype::is 相同,方式如下:

1
use_facet < ctype<charT> > (loc).is (ctype_base::xdigit, c)

此函数模板重载了 C 语言函数 isxdigit(定义于 <cctype>)。

参数

c
要检查的字符。
loc
要使用的 locale。它必须具有 ctype 方面。

模板参数 charT 是字符类型。

返回值

如果 c 确实是十六进制数字字符,则返回 true
否则返回 false

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// isxdigit example (C++)
#include <iostream>       // std::cout, std::hex, std::dec
#include <string>         // std::string
#include <sstream>        // std::stringstream
#include <locale>         // std::locale, std::isxdigit

int main ()
{
  std::locale loc;
  std::string str="ffff";
  if ( std::isxdigit(str[0],loc) )
  {
    int number;
    std::stringstream(str) >> std::hex >> number;
    std::cout << "The hexadecimal number " << std::hex << number;
    std::cout << " is " << std::dec << number << ".\n";
  }
  return 0;
}

输出

The hexadecimal number ffff is 65535.


数据竞争

将访问 loc 及其 ctype 方面。

异常安全

强保证:如果抛出异常,则没有效果。

另见