ヘッダー ファイルでテンプレートを使用しています。私が使用している関数は再帰的であり、2 つの変数を関数の外に置いて比較したいと考えています。これが私のコードです(注:コンパイルしません):
#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
一部のデータを保存できるように、関数で使用されているのと同じジェネリック型の変数を作成しようとしています。これは可能ですか?可能であれば、どのように行うのでしょうか?