码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 关键字decltype

时间:2020-05-09 23:30:01      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:++   decltype   float   turn   style   ring   end   span   auto   

decltype可让编译器找出表达式的类型。

map<string,float> coll;
decltype(coll)::value_type elem;

新的函数声明语法

template<typename T1, typename T2>
auto add(T1 x, T2 y) -> decltype(x+y){
    return x+y;
}

float c=add(5.4f,3);
cout<<"c="<<c<<endl;

 

C++ 关键字decltype

标签:++   decltype   float   turn   style   ring   end   span   auto   

原文地址:https://www.cnblogs.com/xiaoaofengyue/p/12860389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!