我编写了以下函数来对向量的每个元素应用各种数学运算:
namespace MYFUNCTION
{
template<class T>
std::vector<T> eop(const std::vector<T> &v1, T (*f)(T))
{
std::vector<T> v2(v1.size());
for(int ii = 0; ii < v1.size(); ii++)
{
v2[ii] = (*f)(v1[ii]);
}
return v2;
}
}
我还为参数重载了cosh()
函数:std::vector
namespace MYFUNCTION
{
template<class T>
std::vector<T> cosh(const std::vector<T> v1)
{
return eop(v1,static_cast<T (*)(T)>(&std::cosh));
}
}
如果我使用这个函数来输入double
一切都很好。如果我std::complex<double>
改用,我会收到编译器错误。
std::vector<double> a(2);
a[0] = 1.0;
a[1] = 2.0;
std::cout << MYFUNCTION::cosh(a) << std::endl; // Works fine.
std::vector<std::complex<double> > b(2);
b[0] = 1.0 + std::complex<double>(0.0,1.0);
b[1] = 2.0;
std::cout << MYFUNCTION::cosh(b) << std::endl; // Compiler error.
编译器错误是:
error: invalid static_cast from type ‘<unresolved overloaded function type>’ to type ‘std::complex<double> (*)(std::complex<double>)’
编辑:这是cosh
函数的样子complex.h
:
template<class T> complex<T> cosh (const complex<T>& x);
这是cosh
函数的样子cmath.h
:
double cosh (double x);
我已经包括了complex.h
和cmath.h
。