C ++错误没有用于调用静态模板方法的匹配函数

时间:2017-02-24 05:44:17

标签: c++ templates compiler-errors static-methods

我试图从另一个类调用一个静态方法,但是当我运行它时,它会抛出这个:

PagedArray.cpp:21:37: error: no matching function for call to ‘FileManager::loadPage(int&)’
page = FileManager::loadPage(index);

以下是我尝试从中调用它的代码:

PagedArray.cpp

#include "PagedArray.h"
#include "../Entidades/FileManager.h"


template <typename T>
int* PagedArray<T>::operator[](int index) {

Page<T>* page = nullptr;

for(int i = 0; i < this->pagesQueue->Size(); i++){
    if(index == ( *(this->pagesQueue->get(i)->getDato()) )->getLineaActual()){
        page = *this->pagesQueue->get(i)->getDato();
    }
}

if(page == nullptr){
    page = FileManager::loadPage(index); //This is the problem
}
return page->getInfo()->get(index)->getDato();

}

这是类FileManager:

FileManager.h

#include "../Estructuras/Page.h"


class FileManager {

public:

FileManager();

template <typename T>
static Page<T>* loadPage(int index);
};

FileManager.cpp

#include "FileManager.h"

FileManager::FileManager(){}

template <typename T>
Page<T>* FileManager::loadPage(int index) {
    Page<T>* page = nullptr;
    return page ;
}

loadPage方法中的主体只是为了进行测试,所以我认为它并不是真的相关。 对不起,如果我错过了什么,这是我第一次来这里,所以如果你需要别的东西留在下面

1 个答案:

答案 0 :(得分:4)

FileManager::loadPage是一个函数模板,它具有一个无法自动推导出的模板参数。所以你必须明确指定它。 e.g。

page = FileManager::loadPage<T>(index);
//                          ~~~