std::char_traits::eq_int_type
来自cppreference.com
< cpp | string | char traits
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| bool eq_int_type( int_type a, int_type b ); |
(至 C++11) | |
| constexpr bool eq_int_type( int_type a, int_type b ); |
(C++11 起) | |
。检查
int_type的类型的两个值是否相等。Original:
Checks whether two values of type
int_type are equal.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
。返回值是不确定的,如果两个
a和b是“EOF”值相等的。Original:
Return value is unspecified if both of
a and b are equal to eof value.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[编辑] 。参数。
| a, b | - | 值进行比较。
Original: values to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
===。 返回值。===
。 true如果
a等于b,false否则的。Original:
true if
a is equal to b, false otherwise.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[编辑] 。例外。
[编辑] 。复杂性。
。恒定。
Original:
Constant.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.