Während ich den folgenden einfachen Code ausführe, treten zwei Fehler auf:
#include <iostream>
#include <string>
using namespace::std;
template <class Type>
class Stack
{
public:
Stack (int max):stack(new Type[max]), top(-1), maxsize(max){}
~Stack (void) {delete []stack;}
void Push (Type &val);
void Pop (void) {if (top>=0) --top;}
Type& Top (void) {return stack[top];}
//friend ostream& operator<< (ostream&, Stack&);
private:
Type *stack;
int top;
const int maxSize;
};
template <class Type>
void Stack <Type>:: Push (Type &val)
{
if (top+1<maxsize)
stack [++top]=val;
}
Fehler:
MSVCRTD.lib (crtexew.obj): Fehler LNK2019: Nicht aufgelöstes externes Symbol,
_WinMain@16
auf das in der Funktion verwiesen wird___tmainCRTStartup
Was soll ich machen?