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
Definido en el encabezado <type_traits>
template < class T >
struct remove_reference ;
(desde C++11)

Si el tipo T es un tipo referencia, proporciona el typedef miembro type que es el tipo referenciado por T . De lo contrario, type es T .

Si el programa añade especializaciones para std::remove_reference , el comportamiento es indefinido.

Contenidos

Tipos de miembros

Nombre Definición
type el tipo referido por T o T si no es una referencia

Tipos auxiliares

template < class T >
using remove_reference_t = typename remove_reference < T > :: type ;
(desde C++14)

Implementación posible

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; };

Ejemplo

#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';
}

Salida:

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

Véase también

comprueba si un tipo es una referencia lvalue o una referencia rvalue
(plantilla de clase)
añade una referencia lvalue o rvalue al tipo dado
(plantilla de clase)
combina std::remove_cv y std::remove_reference
(plantilla de clase)