我正在编写一些函数模板来重载矩阵类的*
运算符。我使用double
和complex<double>
类型的矩阵做了大量工作。是否可以编写一个返回正确类型的模板函数?例如:
template<class T, class U, class V>
matrix<V> operator*(const T a, const matrix<U> A)
{
matrix<V> B(A.size(1),A.size(2));
for(int ii = 0; ii < B.size(1); ii++)
{
for(int jj = 0; jj < B.size(2); jj++)
{
B(ii,jj) = a*A(ii,jj);
}
}
return B;
}
我希望返回类型V
由T*U
的自然结果决定。这可能吗?
修改
我提出的后续问题question已收到答案,提供了此处适用的其他信息。
答案 0 :(得分:4)
在C ++ 11中,您可以使用替代函数声明语法:
#include <utility> // for declval
template<class T, class U, class V>
auto operator*(const T a, const matrix<U> A)
-> decltype( std::declval<T>() * std::declval<U>() )
{
//...
}