【Effective Modern C++】第一章 类型推导:3. 理解 decltype

个人认为原著写的非常晦涩难懂,所以精简如下:

decltype用于告知名字或表达式的类型:

c++ 复制代码
const int i = 0;               // decltype(i) 是 const int

bool f(const Widget& w);       // decltype(w) 是 const Widget&;decltype(f) 是 bool(const Widget&)

struct Point {
  int x, y;
};                             // decltype(Point::x) 是 int;decltype(Point::y) 是 int

Widget w;                      // decltype(w) 是 Widget

if (f(w)) ...                  // decltype(f(w)) 是 bool

template<typename T>           // std::vector 的简化版
class vector {
public:
  ...
  T& operator[](std::size_t index);
  ...
};

vector<int> v;
...
if (v[0] == 0) ...             // decltype(v[0]) 是 int&

使用场景:当函数的返回类型依赖于参数类型时:我们不知道用户会传什么容器进来

c++ 复制代码
// C++11的写法(尾置返回类型)
template<typename Container, typename Index>
auto authAndAccess(Container& c, Index i)
    -> decltype(c[i])  // 告诉编译器:返回类型就是c[i]的类型
{
    return c[i];
}

// C++14的写法更简洁
template<typename Container, typename Index>
decltype(auto) authAndAccess(Container& c, Index i)
{
    return c[i];  // 编译器自动推导返回类型
}

我们希望这个函数返回容器元素,类型要和容器[]操作符返回的一致。但不同的容器,operator[]返回的类型可能不同:

  • vector<int>operator[]返回int&
  • vector<bool>operator[]返回一个特殊对象

auto的区别auto会去掉引用,decltype原样返回表达式的类型(引用/const会保留)。

decltype(auto):这是C++14的特性,意思是:

  • auto来自动类型推导
  • 但用decltype的规则来推导(保留引用)
    可以理解为 保留引用/const的auto

一个小陷阱

c++ 复制代码
// 括号的微妙影响
int x = 0;
decltype(x) a = x;     // int
decltype((x)) b = x;   // int&

总结

  • 绝大多数情况下,decltype会得出变量或表达式的类型而不作任何修改。
  • 对于类型为 T 的左值表达式,除非该表达式仅有一个名字, decltype 总是得出类型 T&
  • C++14 支持 decltype(auto) ,和 auto 一样,它会从其初始化表达式出发来。

原著在线阅读地址

相关推荐
胖大和尚1 小时前
C++ 多线程编程的实现方式
c++·thread
在水一缸2 小时前
深入浅出 Catch2:现代 C++ 测试框架的优雅实践
开发语言·c++·单元测试·log4j·测试框架·catch2
2401_841495643 小时前
【数据结构】B*树
数据结构·c++·b树·算法·删除·插入·三分分裂
斐夷所非3 小时前
在纷繁竞逐中稳步前行:C++ 2006–2020
c++
保持清醒5404 小时前
类和对象上
c++
乱七八糟的屋子4 小时前
Poco C++高级实战教程:线程池+日志系统+加密算法+WebSocket长连接
c++·websocket·加密解密·#poco·#c++高级开发
hold?fish:palm4 小时前
7 接雨水
开发语言·c++·leetcode
流浪0015 小时前
数据结构篇(五):线性表——栈
数据结构·c++·算法
郝学胜-神的一滴5 小时前
中级OpenGL教程 022:探秘三维世界的血脉传承——物体父子关系与矩阵递归奥义
c++·线性代数·unity·矩阵·游戏引擎·unreal engine·opengl
ch0sen1pm6 小时前
刚学完 CAS 原子操作,我花了一晚上写了三个无锁队列
c++