C++ 模板专题 - 类型萃取

一:概述

C++ 中的萃取(或类型萃取)是一种技术,主要用于从类型中提取特定的特性或信息,以便在模板编程中进行更灵活的类型处理。萃取通常通过模板和特化来实现,允许开发者在编译时确定类型的属性。

类型萃取是指通过模板机制,提取和判断类型的一些属性,例如类型是否为指针、引用、数组等,或者提取类型的基础类型、大小等信息。这一机制有助于编写更通用和类型安全的代码. 类型萃取的常见用途:

  • 特性检测:确定一个类型是否满足某种条件(如是否是整型、浮点型等)。
  • 选择性实现:根据提取到的类型特征选择不同的实现或算法。
  • 减少代码重复:通过萃取公共特性,减少代码中的冗余。

二:示例:

cpp 复制代码
#include <iostream>
#include <type_traits>

// 类型萃取
template <typename T>
struct TypeExtractor {
    using BaseType = T;  // 基础类型为 T
    static const bool isPointer = false;  // 默认不是指针
};

template <typename T>
struct TypeExtractor<T*> {
    using BaseType = T;  // 基础类型为 T
    static const bool isPointer = true;  // 是指针类型
};

template <typename T>
void printTypeInfo(T) {
    if (TypeExtractor<T>::isPointer) {
        std::cout << "This is a pointer type." << std::endl;
    } else {
        std::cout << "This is not a pointer type." << std::endl;
    }
    std::cout << "Base type: " << typeid(typename TypeExtractor<T>::BaseType).name() << std::endl;
}

int main() {
    int a = 10;
    int* p = &a;

    printTypeInfo(a);  // Output: This is not a pointer type. Base type: int
    printTypeInfo(p);  // Output: This is a pointer type. Base type: int

    return 0;
}

三:标准库函数:

1. 类型特征

  • std::is_integral<T>:判断 T 是否为整型。
  • std::is_floating_point<T>:判断 T 是否为浮点型。
  • std::is_arithmetic<T>:判断 T 是否为算术类型(整型或浮点型)。
  • std::is_void<T>:判断 T 是否为 void 类型。
  • std::is_pointer<T>:判断 T 是否为指针类型。
  • std::is_reference<T>:判断 T 是否为引用类型。
  • std::is_array<T>:判断 T 是否为数组类型。
  • std::is_class<T>:判断 T 是否为类类型。

2. 类型变换

  • std::remove_pointer<T>:去掉指针的指针类型。
  • std::add_pointer<T>:为类型添加指针。
  • std::remove_reference<T>:去掉引用的类型。
  • std::add_lvalue_reference<T>:为类型添加左值引用。
  • std::add_rvalue_reference<T>:为类型添加右值引用。
  • std::decay<T>:将类型转换为其"最基本"形式(去掉引用和 cv-qualifiers)。
  • std::remove_cv<T>:去掉类型的 constvolatile 限定符。

3. 组合类型特征

  • std::is_same<T, U>:判断 TU 是否相同。
  • std::is_base_of<Base, Derived>:判断 Derived 是否是 Base 的派生类。
  • std::is_constructible<T, Args...>:判断类型 T 是否可以通过给定参数构造。
  • std::is_trivially_constructible<T>:判断类型 T 是否有一个平凡的构造函数。

4. 类型大小和对齐

  • std::alignment_of<T>:返回类型 T 的对齐要求。
  • std::size_of<T>:返回类型 T 的大小(以字节为单位)。

5. 常量表达式和其他

  • std::conditional<B, T, F>:条件类型,若 B 为真则为 T,否则为 F
  • std::enable_if<condition, T>:用于条件启用模板的类型。
  • std::void_t<T>:如果 T 可用,则为 void 类型,用于 SFINAE(Substitution Failure Is Not An Error)。
相关推荐
JavaPub-rodert3 分钟前
一道go面试题
开发语言·后端·golang
6<76 分钟前
【go】静态类型与动态类型
开发语言·后端·golang
车载小杜1 小时前
基于指针的线程池
开发语言·c++
沐知全栈开发1 小时前
Servlet 点击计数器
开发语言
m0Java门徒1 小时前
Java 递归全解析:从原理到优化的实战指南
java·开发语言
桃子酱紫君2 小时前
华为配置篇-BGP实验
开发语言·华为·php
QTX187302 小时前
JavaScript 中的原型链与继承
开发语言·javascript·原型模式
shaoing2 小时前
MySQL 错误 报错:Table ‘performance_schema.session_variables’ Doesn’t Exist
java·开发语言·数据库
The Future is mine3 小时前
Python计算经纬度两点之间距离
开发语言·python
Enti7c3 小时前
HTML5和CSS3的一些特性
开发语言·css3