公共静态成员函数
<string>

std::char_traits::eq

static bool eq (const char_type& c, const char_type& d);
static constexpr bool eq (char_type c, char_type d) noexcept;
比较字符是否相等
返回字符cd是否被认为是相等的。

char_traits 的标准特化中,此函数的行为与内置的行为相同`operator==`,但自定义的字符特征类可能提供替代行为。
char_traits 的标准特化中,此函数的行为与内置的行为相同`operator==`对于类型无符号字符,但自定义的字符特征类可能提供替代行为。

参数

c, d
字符值。
成员类型char_type字符类型(即,char_traits 中的类模板参数)。

返回值

如果c被认为等于d

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// char_traits::eq
#include <iostream>   // std::cout
#include <string>     // std::basic_string, std::char_traits
#include <cctype>     // std::tolower
#include <cstddef>    // std::size_t

// traits with case-insensitive eq:
struct custom_traits: std::char_traits<char> {
  static bool eq (char c, char d) { return std::tolower(c)==std::tolower(d); }
  // some (non-conforming) implementations of basic_string::find call this instead of eq:
  static const char* find (const char* s, std::size_t n, char c)
  { while( n-- && (!eq(*s,c)) ) ++s; return s; }
};

int main ()
{
  std::basic_string<char,custom_traits> str ("Test");
  std::cout << "T found at position " << str.find('t') << '\n';
  return 0;
}

输出
T found at position 0


复杂度

常量。

异常安全

无异常抛出保证:此成员函数在任何标准特化中都不会抛出异常。

另见