아래와 같이 간단한 코드를 실행하는 동안 다음과 같은 두 가지 오류가 있습니다.
#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;
}
오류 :
MSVCRTD.lib (crtexew.obj) : 오류 LNK2019 :
_WinMain@16
함수에서 참조 된 확인할 수 없는 외부 기호___tmainCRTStartup
어떻게해야합니까?