【问题标题】:Trying to implement a template for a stack in c++ (and failing miserably) [duplicate]尝试在 C++ 中为堆栈实现模板(并且惨遭失败)[重复]
【发布时间】:2014-07-07 15:20:36
【问题描述】:

我大约半年前开始学习信息学,我们正在学习 作为编程语言,所以我对编码真的很陌生。今天尝试为堆栈实现一个模板,但是 在尝试编译时一直告诉我“: unresolved external symbol”,所以我的代码中一定有一个(可能非常愚蠢的)错误。这是错误消息(部分是德语,不过单词应该很容易猜到):

1>main.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""public:        __thiscall stack<int>::stack<int>(void)" (??0?$stack@H@@QAE@XZ)" in Funktion "_main".
1>main.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""public: __thiscall stack<int>::~stack<int>(void)" (??1?$stack@H@@QAE@XZ)" in Funktion "_main".
1>main.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""public: void __thiscall stack<int>::pop(void)" (?pop@?$stack@H@@QAEXXZ)" in Funktion "_main".
1>main.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""public: void __thiscall stack<int>::push(int)" (?push@?$stack@H@@QAEXH@Z)" in Funktion "_main".

这里是代码: //stack.h

#pragma once

template <class obj>
class stack
{ 
int maxSize;
int currentSize;
obj * thisStack;

public:
stack(int size);
~stack();

bool isFull();
bool isEmpty();
obj top();
void pop();
void push(obj objekt);
};


//stack.cpp
#include "stdafx.h"
#include "stack.h"
#include <iostream>
using namespace std;


template <class obj> 
stack<obj>::stack(int size)
{
currentSize = 0;
maxSize = size;
thisStack = new obj[maxSize];
} 

template <class obj>
stack<obj>::~stack()
{
delete thisStack[];
}

template <class obj>
bool stack<obj>::isEmpty()
{
if (currentSize == 0)
    return true;
else
    return false;
}

template <class obj>
bool stack<obj>::isFull()
{
if (currentSize == maxSize)
    return true;
else
    return false;
}

template <class obj>
obj stack<obj>::top()
{
if (!isEmpty())
{
    return thisStack[currentSize];
}
else
{
    cout << "Stack is empty" << endl;
}

}

template <class obj>
void stack<obj>::push(obj objekt)
{
if (!isFull())
{
    thisStack[currentSize] = objekt;
    cout << "Object " << thisStack[currentSize] << "pushed on the stack" << endl;
    currentSize++;
}
else
{
    cout << "Der Stack is full" << endl;
}
}

template <class obj>
void stack<obj>::pop()
{
if (!isEmpty())
{
    cout << "The Object " << thisStack[currentSize - 1] << endl;
    currentSize--;
}
else
{
    cout << "Stack is empty" << endl;
}
}

...以及 main.ccp,我用几个整数值对其进行了测试,发现它不起作用

#include "stdafx.h"
#include "stack.h"

void main()
{
stack<int> myStack(10);
myStack.push(1);
myStack.push(2);
myStack.push(3);
myStack.push(4);
myStack.push(5);
myStack.push(6);
myStack.push(7);
myStack.push(8);
myStack.push(9);
myStack.push(10);
myStack.push(11);
myStack.pop();
myStack.pop();
myStack.pop();
myStack.pop();
myStack.pop();
myStack.pop();
myStack.pop();
myStack.pop();
myStack.pop();
myStack.pop();
myStack.pop();
getchar();
}

非常感谢您的帮助,已经尝试了一个多小时才找到错误,谢谢

【问题讨论】:

  • 郑重声明,“一个多小时”并不是很长的时间。请尝试在您的问题上花费实际的时间。

标签: c++ visual-studio lnk2019 c++ visual-studio templates stack lnk2019


【解决方案1】:

类模板成员函数的定义必须驻留在您的头文件中,以便它们在引用它们的每个翻译单元中都可用。

你的书应该提到这一点。

【讨论】:

    猜你喜欢
    • 2020-05-11
    • 1970-01-01
    • 1970-01-01
    • 2018-04-25
    • 2017-01-28
    • 2017-01-31
    • 1970-01-01
    • 2018-10-12
    • 1970-01-01
    相关资源
    最近更新 更多