テンプレートクラスを作成して初期化しました。このクラスからメソッドを呼び出したいのですが、コンパイラ エラーが発生します。
(関数を使用TemporaryFunctionForSimulator
して、テンプレート クラスを *.h と *.cpp に分割することに成功しました。これは問題ではありません!)
エラー: 'simulator' のメンバー 'addEvent' の要求は、非クラス型 'Simulator*()' です</p>
Simulator.h
#ifndef SIMULATOR_H
#define SIMULATOR_H
#include<queue>
#include<Event.h>
template<class T>
class Simulator
{
public:
void addEvent(T t);
Simulator();
virtual ~Simulator();
protected:
private:
};
#endif // SIMULATOR_H
シミュレータ.cpp
#include "Simulator.h"
#include <functional>
#include <queue>
#include <vector>
#include <iostream>
using namespace std;
template<class T>
Simulator<T>::Simulator()
{
}
template<class T>
Simulator<T>::~Simulator()
{
//dtor
}
template<class T>
void Simulator<T>::addEvent(T t)
{
//do something
}
// No need to call this TemporaryFunction() function,
// it's just to avoid link error.
void TemporaryFunctionForSimulator()
{
Simulator<int> TempObj();
}
main.cpp
Simulator<int> *simulator();
int t = 5;
simulator->addEvent(t); //error: request for member ‘addEvent’ in ‘simulator’, which is of non-class type ‘Simulator<int>*()’