错误:某些类不是模板

时间:2015-05-21 08:04:22

标签: c++ templates compiler-errors

我有一个头文件Algo.h。它具有以下内容:

#include <iostream>
#include <fstream>
#include <math.h>
#include <float.h>
#include <string.h>
#include <stdlib.h>

using namespace std;

//some static functions
// ...

template <class Type> class Algo{
    int

    public:
        Algo(int size, int num, int plth, int theN, float** theAg, int theLN,
            float* theIn, float theeEps = 1E-3, float theEpsilonLR = 1E-3,
            int theCycle = 30, bool DebInf = false, int theT = -1, int** theX = 0,
            const char* theFileName = 0, const char* theFileNameChar = 0);
        ~Algo();

        //some methods
        //...
};

//Constructor
template <class Type> Algo<Type>::Algo(int size, int num, int plth, int theN, float** theAg, int theLN,
                                        float* theIn, float theeEps = 1E-3, float theEpsilonLR = 1E-3,
                                        int theCycle = 30, bool DebInf = false, int theT = -1, int** theX = 0,
                                        const char* theFileName = 0, const char* theFileNameChar = 0){
    //...
}
// ...

然后我想在main.cpp中使用它:

#include "Algo.h"
#include <float.h>
#include <time.h>
#include <stdlib.h>
#include <string>

#include <iostream>

using namespace std;

Algo<int>* construct1(const int & rt, float** & rm); //error: Algo is not a template
Algo<int>* construct2(const int & rte, float** & rm, Algo<int>* & the1, const bool & rob1); //error: Algo is not a template

//...

int main(){
    //...
    return 0;
}

似乎一切都应该正常,但我总是得到这个错误:

  

Algo不是模板。

你有任何想法如何解决它?

2 个答案:

答案 0 :(得分:2)

  1. 你的代码中不应该有“int”。请删除它。

    template <class Type> class Algo{
      int // here should be deleted
    
      public:
      ...
    
  2. Algo的构造函数有许多默认参数,但是当你定义这个函数时,这些默认参数不应该在param-list中设置值。您可以按如下方式进行构造函数定义:

    template <class Type> Algo<Type>::Algo(int size, int num, int plth, int theN, float** theAg, int theLN, float* theIn, float theeEps, float theEpsilonLR, int theCycle, bool DebInf, int theT, int** theX, const char* theFileName, const char* theFileNameChar)
    {
    //...
    }
    
  3. 做这两个修复,它会起作用。(我已经在我的电脑上试了〜)

答案 1 :(得分:1)

我不认为这是唯一的问题,但要注意你是如何尝试使用它的。

构造函数:

 Algo(int size, int num, int plth, int theN, float** theAg, int theLN,
            float* theIn, float theeEps = 1E-3, float theEpsilonLR = 1E-3,
            int theCycle = 30, bool DebInf = false, int theT = -1, int** theX = 0,
            const char* theFileName = 0, const char* theFileNameChar = 0);

有很多参数。前7个是必需的,其余的是默认值并且是可选的。但是,当您尝试实例化实例时:

Algo<int>* construct1(const int & rt, float** & rm); //error: Algo is not a template
Algo<int>* construct2(const int & rte, float** & rm, Algo<int>* & the1, const bool & rob1); //error: Algo is not a template

您正在传递2个或4个参数。没有匹配的重载。 您需要至少提供前7个参数。