命名空间
变体
操作

std::add_pointer

来自 cppreference.com
< cpp‎ | types
 
 
元编程库
类型特征
类型类别
(C++11)
(C++14)  
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
类型属性
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)(直到 C++20*)
(C++11)(C++20 中已弃用)
(C++11)
类型特征常量
元函数
(C++17)
支持的操作
关系和属性查询
类型修改
(C++11)(C++11)(C++11)
类型转换
(C++11)(C++23 中已弃用)
(C++11)(C++23 中已弃用)
(C++11)
(C++11)
(C++17)

(C++11)(直到 C++20*)(C++17)
编译时有理数运算
编译时整数序列
 
定义在头文件中 <type_traits>
template< class T >
struct add_pointer;
(自 C++11 起)

如果 T 是一个 可引用类型 或(可能限定了 cv 的)void,则提供的成员 typedef typetypename std::remove_reference<T>::type*.

否则,提供的成员 typedef typeT

如果程序为 std::add_pointer 添加了专门化,则行为未定义。

内容

[编辑] 嵌套类型

名称 定义
type 如上所述确定

[编辑] 辅助类型

template< class T >
using add_pointer_t = typename add_pointer<T>::type;
(自 C++14 起)

[编辑] 可能的实现

namespace detail
{
    template<class T>
    struct type_identity { using type = T; }; // or use std::type_identity (since C++20)
 
    template<class T>
    auto try_add_pointer(int)
      -> type_identity<typename std::remove_reference<T>::type*>; // usual case
 
    template<class T>
    auto try_add_pointer(...)
      -> type_identity<T>; // unusual case (cannot form std::remove_reference<T>::type*)
} // namespace detail
 
template<class T>
struct add_pointer : decltype(detail::try_add_pointer<T>(0)) {};

[编辑] 示例

#include <iostream>
#include <type_traits>
 
template<typename F, typename Class>
void ptr_to_member_func_cvref_test(F Class::*)
{
    // F is an “abominable function type”
    using FF = std::add_pointer_t<F>;
    static_assert(std::is_same_v<F, FF>, "FF should be precisely F");
}
 
struct S
{
    void f_ref() & {}
    void f_const() const {}
};
 
int main()
{
    int i = 123;
    int& ri = i;
    typedef std::add_pointer<decltype(i)>::type IntPtr;
    typedef std::add_pointer<decltype(ri)>::type IntPtr2;
    IntPtr pi = &i;
    std::cout << "i = " << i << '\n';
    std::cout << "*pi = " << *pi << '\n';
 
    static_assert(std::is_pointer_v<IntPtr>, "IntPtr should be a pointer");
    static_assert(std::is_same_v<IntPtr, int*>, "IntPtr should be a pointer to int");
    static_assert(std::is_same_v<IntPtr2, IntPtr>, "IntPtr2 should be equal to IntPtr");
 
    typedef std::remove_pointer<IntPtr>::type IntAgain;
    IntAgain j = i;
    std::cout << "j = " << j << '\n';
 
    static_assert(!std::is_pointer_v<IntAgain>, "IntAgain should not be a pointer");
    static_assert(std::is_same_v<IntAgain, int>, "IntAgain should be equal to int");
 
    ptr_to_member_func_cvref_test(&S::f_ref);
    ptr_to_member_func_cvref_test(&S::f_const);
}

输出

i = 123
*pi = 123
j = 123

[编辑] 缺陷报告

以下行为更改的缺陷报告被追溯应用于先前发布的 C++ 标准。

DR 应用于 发布的行为 正确行为
LWG 2101 C++11 如果 T 是一个具有 cvref函数类型,则程序格式错误。 在这种情况下产生的类型为 T

[编辑] 另请参阅

检查类型是否为指针类型
(类模板) [编辑]
从给定类型中移除指针
(类模板) [编辑]