错误 LNK2019:未解析的外部符号 _WinMain@16 在函数 ___tmainCRTStartup 中引用
当我运行下面的简单代码时,我有两个错误如下:
While I am running the simple code as below I have two errors as following:
#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) : error LNK2019: 未解析的外部符号 _WinMain@16
引用在函数 ___tmainCRTStartup
MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol
_WinMain@16
referenced in function___tmainCRTStartup
我该怎么办?
推荐答案
那是链接器问题.
尝试更改属性 -> 链接器 -> 系统 -> 子系统(在 Visual Studio 中).
Try to change Properties -> Linker -> System -> SubSystem (in Visual Studio).
从 Windows (/SUBSYSTEM:WINDOWS) 到 控制台 (/SUBSYSTEM:CONSOLE)
这个一个帮了我
相关文章