decltype总结
Posted hellozhangjz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了decltype总结相关的知识,希望对你有一定的参考价值。
decltype会识别const和引用 decltype一个表达式的时候会判断该表达式是左值还是右值,如果是左值就返回引用,否则就返回非引用。 int &a = xx; const decltype(a) b = xxx; typedef int* pp; const pp x; 这里的b是int&
以上是关于decltype总结的主要内容,如果未能解决你的问题,请参考以下文章