码迷,mamicode.com
首页 > 其他好文 > 详细

推断类型:decltype()的简单应用

时间:2020-04-14 10:47:21      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:return   pre   tor   template   bsp   div   +=   ++   for   

template<class T, class U>
auto operator+(const Matrix<T>& a, const Matrix<U>& b) -> Matrix<decltype(T{}+U{})>
{
    Matrix<decltype(T{}+U{})> res;
    for(int i=0; i!=a.rows(); ++i)
        for(int j=0; j!=a.cols(); ++j)
            res(i,j) += a(i,j)+b(i,j);
    return res;
}

 

推断类型:decltype()的简单应用

标签:return   pre   tor   template   bsp   div   +=   ++   for   

原文地址:https://www.cnblogs.com/lhb666aboluo/p/12696165.html

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