C++ 关键字decltype

2021-01-25 13:14

阅读:481

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

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

mapstring,float> coll;
decltype(coll)::value_type elem;

新的函数声明语法

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

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

 

C++ 关键字decltype

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

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


评论


亲,登录后才可以留言!