c++特性:decltype

主要参考:c++11新特性–decltype

返回值 decltype(表达式)
[返回值的类型是表达式参数的类型]

看一些例子:

template <class U, class V>
auto Somefunction(U u, V v) -> decltype(u*v)
{
    result = u*v;//now what type would be the result???
    decltype(u*v) result = u*v;//Hmm .... we got what we want
    return result;
}

在下面的一个段落我将会让你熟悉这个观念用 auto 和 decltype 来声明模板函数的返回值,其类型依靠模板参数。

  1. 如果这个表达式是个函数,decltype 给出的类型为函数返回值的类型。
int add(int i, int j) { return i+j; }
decltype(add(5, 6)) var = 5;//var is int
  1. 非常重要的标记一下,decltype 不会执行表达式而auto会,他仅仅推论一下表达式的类型。
int fun() {}
decltype(fun()) x;//x is int ,and fun() will not run
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值