我在头文件中使用模板。我正在使用的函数是递归的,我想在函数之外保留两个变量以进行比较。这是我的代码(注意:不编译):
#include "Position.h"
#ifndef _SOLVER_H
#define _SOLVER_H
class Solver{
public:
template<typename T>
int EvaluatePosition(T &p, bool me) {
int score = 0;
if(p.isGameOver()) {
return p.score(me);
}
else {
std::vector<T> nextMoves = p.getNextPositions();
for(int i=0; i != nextMoves.size(); i++) {
score += EvaluatePosition(nextMoves[i],!me);
if(score > maxScore) {
p.display();
maxScore = score;
maxP = p;
p.display();
}
}
return score;
}
}
T maxP; // Want this to be the same Type T that is used in the function
int maxScore;
};
#endif
我正在尝试创建一个T
与函数中使用的通用类型相同的变量,以便我可以保存一些数据。这是否可能,如果是,将如何完成?