我不明白为什么这不起作用
In member function ‘void Test_CB::testCB()’:
error: no matching function for call to ‘calculateCB(USSM&, USSM&, NL&, double&, CD&)’
candidate is:
template<class T, class V> std::vector<CV> calculateCB(const T&, const T&, const NL&, double, const CD&)
通话是这样的
USSM x1;
USSM x2;
NL x3;
double x4;
CD x5;
CV b = calculateCB<USSM, USM>(x1,x2,x3,x4,x5)[0];
我只是描述了类型。它们以正确的方式创建或返回。
模板声明为
template <class T, class V>
std::vector<CV> calculateCB(T const & x1,
T const & x2,
NL const & x3,
double x4,
CD const & x5);
我还将模板(作为绝望的措施)实例化为
template<>
std::vector<CV> calculateCB<USSM,USM>(USSM const & x1,
USSM const & x2,
NL const & x3,
double x4,
CD const & x5);
请注意,第二个模板参数是模板函数中内部使用的变量。