Namespaces
Variants

std:: remove_reference

From cppreference.net
Metaprogramming library
Type traits
Type categories
(C++11)
(C++11) ( DR* )
Type properties
(C++11)
(C++11)
(C++14)
(C++11) (deprecated in C++26)
(C++11) ( until C++20* )
(C++11) (deprecated in C++20)
(C++11)
Type trait constants
Metafunctions
(C++17)
Supported operations
Relationships and property queries
Type modifications
Type transformations
(C++11) (deprecated in C++23)
(C++11) (deprecated in C++23)
(C++11)
(C++11) ( until C++20* ) (C++17)

Compile-time rational arithmetic
Compile-time integer sequences
Определено в заголовочном файле <type_traits>
template < class T >
struct remove_reference ;
(начиная с C++11)

Если тип T является ссылочным типом, предоставляет typedef-член type , который является типом, на который ссылается T . В противном случае type равен T .

Если программа добавляет специализации для std::remove_reference , поведение не определено.

Содержание

Типы членов

Название Определение
type тип, на который ссылается T или T если это не ссылка

Вспомогательные типы

template < class T >
using remove_reference_t = typename remove_reference < T > :: type ;
(начиная с C++14)

Возможная реализация

template<class T> struct remove_reference { typedef T type; };
template<class T> struct remove_reference<T&> { typedef T type; };
template<class T> struct remove_reference<T&&> { typedef T type; };

Пример

#include <iostream>
#include <type_traits>
int main()
{
    std::cout << std::boolalpha;
    std::cout << "std::remove_reference<int>::type is int? "
              << std::is_same<int, std::remove_reference<int>::type>::value << '\n';
    std::cout << "std::remove_reference<int&>::type is int? "
              << std::is_same<int, std::remove_reference<int&>::type>::value << '\n';
    std::cout << "std::remove_reference<int&&>::type is int? "
              << std::is_same<int, std::remove_reference<int&&>::type>::value << '\n';
    std::cout << "std::remove_reference<const int&>::type is const int? "
              << std::is_same<const int,
                              std::remove_reference<const int&>::type>::value << '\n';
}

Вывод:

std::remove_reference<int>::type is int? true
std::remove_reference<int&>::type is int? true
std::remove_reference<int&&>::type is int? true
std::remove_reference<const int&>::type is const int? true

Смотрите также

проверяет, является ли тип lvalue reference или rvalue reference
(class template)
добавляет lvalue или rvalue ссылку к заданному типу
(class template)
объединяет std::remove_cv и std::remove_reference
(class template)