在我的矩阵类中有太多的
实例for(size_t i = 1 ; i <= rows ; i++){
for(size_t j = 1 ; i <= cols ;j++){
//Do something
}
}
牢记DRY原则,我想知道我是否可以
matrix<T>::loopApply(T (*fn) (T a)){ // changed T to T a
for(size_t i = 1 ; i <= rows ; i++){
for(size_t j = 1 ; i <= cols ;j++){
_matrix[(i-1)*_rows + (j-1)] = fn(a) // changed T to a
}
}
}
因此,当我想循环并将某些内容应用于矩阵时,我只需要调用loopApply(fn)
有没有办法做到这一点?或者有更好的方法来做到这一点吗? 谢谢。
UPDATE 我正在寻找一种通用的方法来做到这一点。因此,fn不需要采用单个参数等。我听说过变量参数,但我无法理解它们是如何工作的,或者它们是否适合这项工作。
最小代码:
// in matrix.h
template <class T>
class matrix
{
public:
...
private:
...
std::vector<T> _matrix;
void loopApply(T (*fn) (T) );
}
#include "matrix.tpp"
//in matrix.tpp
template <class T> // Template to template // Pointed out in comment
// loopApply as written above
答案 0 :(得分:0)
看起来像是
#include <iostream>
struct A
{
enum { N = 10 };
int a[N][N];
template <typename Fn, typename ...Args>
void method( Fn fn, Args...args )
{
for ( size_t i = 0; i < N; i++ )
{
for ( size_t j = 0; j < N; j++ ) a[i][j] = fn( args... );
}
}
};
int main()
{
return 0;
}