std::is_same
Определено в заголовке <type_traits> |
||
|---|---|---|
template< class T, class U > struct is_same; |
(с C++11) |
Если T и U обозначают один и тот же тип (с учётом квалификаторов const/volatile), предоставляет член-константу value, равную true. В противном случае value имеет значение false.
Коммутативность соблюдается, т.е. для любых двух типов T и U, is_same<T, U>::value == true тогда и только тогда, когда is_same<U, T>::value == true.
Поведение программы, добавляющей специализации для std::is_same или std::is_same_v(с C++17) не определено.
Вспомогательный шаблон переменной
template< class T, class U > inline constexpr bool is_same_v = is_same<T, U>::value; |
(с C++17) |
Наследуется от std::integral_constant
Члены-константы
|
value
[static]
|
true если T и U являются одним типом, false в противном случае (публичная статическая константа-член) |
Члены-функции
|
operator bool
|
преобразует объект в bool, возвращает value (публичная функция-член) |
|
operator()
(C++14)
|
возвращает value (публичная функция-член) |
Типы-члены
| Тип | Определение |
|---|---|
value_type |
bool |
type |
std::integral_constant<bool, value> |
Возможная реализация
template<class T, class U>
struct is_same : std::false_type {};
template<class T>
struct is_same<T, T> : std::true_type {}; |
Пример
#include <cstdint>
#include <iostream>
#include <type_traits>
int main()
{
std::cout << std::boolalpha;
// some implementation-defined facts
// usually true if 'int' is 32 bit
std::cout << std::is_same<int, std::int32_t>::value << ' '; // maybe true
// possibly true if ILP64 data model is used
std::cout << std::is_same<int, std::int64_t>::value << ' '; // maybe false
// same tests as above, except using C++17's std::is_same_v<T, U> format
std::cout << std::is_same_v<int, std::int32_t> << ' '; // maybe true
std::cout << std::is_same_v<int, std::int64_t> << '\n'; // maybe false
// compare the types of a couple variables
long double num1 = 1.0;
long double num2 = 2.0;
static_assert( std::is_same_v<decltype(num1), decltype(num2)> == true );
// 'float' is never an integral type
static_assert( std::is_same<float, std::int32_t>::value == false );
// 'int' is implicitly 'signed'
static_assert( std::is_same_v<int, int> == true );
static_assert( std::is_same_v<int, unsigned int> == false );
static_assert( std::is_same_v<int, signed int> == true );
// unlike other types, 'char' is neither 'unsigned' nor 'signed'
static_assert( std::is_same_v<char, char> == true );
static_assert( std::is_same_v<char, unsigned char> == false );
static_assert( std::is_same_v<char, signed char> == false );
// const-qualified type T is not same as non-const T
static_assert( !std::is_same<const int, int>() );
}Возможный вывод:
true false true false
См. также
|
(C++20)
|
определяет, что тип идентичен другому типу (концепция) |
decltype спецификатор(C++11) |
получает тип выражения или сущности |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/types/is_same