对模板函数的调用 - 合法吗?
a call to template-function - is it legal?
我有一个模板函数(找到最小值的通用函数),它看起来像这样:
template<class T, class Func>
int findmin(const T* a, int n, Func less){
//...
}
和一个电话:
int smallest_matrix(const Matrix*a, int n){
return findmin(a,n,less_matrices);
}
其中 less_marices 是:
bool less_matrices(const Matrix& m1, const Matrix& m2){
//...
}
这是正确的语法吗?
我不应该用 operator () 定义一个函数对象,它会做 less_matrices 做的布尔检查,并调用 findmin 不应该是这样的:
int smallest_matrix(const Matrix*a, int n){
minMatrixFunc f;
return findmin<Matrix, minMatrixFunc>(a,n,f);
}
其中 minMatrixFunc 是具有正确 operator()???
的函数对象
Is that right syntax?
是的。
Shouldn't I define a function-object with operator ()
可以,但没必要。
您没有显示 findmin
的定义。但据推测,您对 Func less
所做的一切就是使用 function call operator on it: less( argument_list )
. If so, any callable type will do as long as the overload resolution finds a matching argument list. That includes pointers to functions,这就是您所使用的。
我有一个模板函数(找到最小值的通用函数),它看起来像这样:
template<class T, class Func>
int findmin(const T* a, int n, Func less){
//...
}
和一个电话:
int smallest_matrix(const Matrix*a, int n){
return findmin(a,n,less_matrices);
}
其中 less_marices 是:
bool less_matrices(const Matrix& m1, const Matrix& m2){
//...
}
这是正确的语法吗?
我不应该用 operator () 定义一个函数对象,它会做 less_matrices 做的布尔检查,并调用 findmin 不应该是这样的:
int smallest_matrix(const Matrix*a, int n){
minMatrixFunc f;
return findmin<Matrix, minMatrixFunc>(a,n,f);
}
其中 minMatrixFunc 是具有正确 operator()???
的函数对象Is that right syntax?
是的。
Shouldn't I define a function-object with operator ()
可以,但没必要。
您没有显示 findmin
的定义。但据推测,您对 Func less
所做的一切就是使用 function call operator on it: less( argument_list )
. If so, any callable type will do as long as the overload resolution finds a matching argument list. That includes pointers to functions,这就是您所使用的。