ここで何が間違っているのか知りたい:
class Grasp
{
typedef struct
{
int unique;
int intersection;
int sets;
float alpha;
int *covered;
int *choosen;
}best;
static best findSolution();
}
.cpp の場合:
best Grasp::findSolution()
{
//it doesn't matter
}
その行にエラーがあります: best Grasp::findSolution()
' best ' は型に名前を付けません
なんで?