【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 一样,它会从其初始化表达式出发来。

原著在线阅读地址

相关推荐
weixin_4997715511 分钟前
C++中的组合模式
开发语言·c++·算法
近津薪荼42 分钟前
dfs专题5——(二叉搜索树中第 K 小的元素)
c++·学习·算法·深度优先
xiaoye-duck44 分钟前
吃透 C++ STL list:从基础使用到特性对比,解锁链表容器高效用法
c++·算法·stl
_F_y1 小时前
C++重点知识总结
java·jvm·c++
初願致夕霞2 小时前
Linux_进程
linux·c++
Thera7773 小时前
【Linux C++】彻底解决僵尸进程:waitpid(WNOHANG) 与 SA_NOCLDWAIT
linux·服务器·c++
Wei&Yan3 小时前
数据结构——顺序表(静/动态代码实现)
数据结构·c++·算法·visual studio code
wregjru3 小时前
【QT】4.QWidget控件(2)
c++
浅念-3 小时前
C++入门(2)
开发语言·c++·经验分享·笔记·学习
小羊不会打字3 小时前
CANN 生态中的跨框架兼容桥梁:`onnx-adapter` 项目实现无缝模型迁移
c++·深度学习