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 のいずれかであるかどうかをチェックする
(クラステンプレート)
指定された型に lvalue または rvalue 参照を追加する
(クラステンプレート)
std::remove_cv std::remove_reference を組み合わせる
(クラステンプレート)