使用向量 C++ 构建模板堆栈结构
Building template Stack structure with vector c++
我正在用 C++ 实现基于 vector 的模板化 Stack 结构。我不确定我的代码有什么问题。
Stack.h
#ifndef STACK_H_
#define STACK_H_
#include <vector>
using namespace std;
template <class T>
class Stack {
public:
Stack();
virtual ~Stack();
bool empty();
int size();
void push(T pushvar);
T pop();
private:
std::vector<T> container;
};
#endif /* STACK_H_ */
Stack.cpp
#include "Stack.h"
#include <vector>
//template <class T>
Stack::Stack()
:container(0)
{
}
Stack::~Stack() {
// TODO Auto-generated destructor stub
}
bool Stack::empty(){
return (container.empty());
}
甚至在从 main 调用任何东西之前,Eclipse 就给了我几个错误。但我会给出一个示范性的主要内容:
#include <iostream>
#include "Stack.cpp"
using namespace std;
int main() {
Stack<int> s;
cout << s.empty();
return (0);
}
编译器returns出现以下错误:
Description Resource Path Location Type
'container' was not declared in this scope Stack.cpp /PracticeCpp/src line 23 C/C++ Problem
'template<class T> class Stack' used without template parameters Stack.cpp /PracticeCpp/src line 22 C/C++ Problem
invalid use of template-name 'Stack' without an argument list Stack.cpp /PracticeCpp/src line 12 C/C++ Problem
invalid use of template-name 'Stack' without an argument list Stack.cpp /PracticeCpp/src line 18 C/C++ Problem
Member declaration not found Stack.cpp /PracticeCpp/src line 12 Semantic Error
Member declaration not found Stack.cpp /PracticeCpp/src line 18 Semantic Error
Member declaration not found Stack.cpp /PracticeCpp/src line 22 Semantic Error
Method 'empty' could not be resolved Stack.cpp /PracticeCpp/src line 23 Semantic Error
Symbol 'container' could not be resolved Stack.cpp /PracticeCpp/src line 13 Semantic Error
我知道我没有实现头文件中声明的所有方法,但这不是我的问题。在我继续意识到它们之前,我想了解我哪里错了?
回答后更正:
我遵循了答案中的建议,但我仍然不明白还有什么问题。我将模板实现移到了页眉。我删除了其他未实现的方法以避免混淆。现在我的 .cpp 文件是空的。
我的新头文件:
#ifndef STACK_H_
#define STACK_H_
#include <vector>
template <class T>
class Stack {
private:
std::vector<T> container;
public:
template <typename T>
Stack<T>::Stack() : container(0)
{
}
template <class T>
bool Stack::empty() {
return container.empty();
}
};
#endif /* STACK_H_ */
定义应该是
template <typename T>
Stack<T>::Stack() : container(0)
{
}
并且不在 .cpp 中
从未声明方法 Stack::empty()
,您声明了 Stack<T>::empty()
。彼此的构造函数、运算符和方法也是如此。向每个实现添加模板声明以修复此错误。请注意,错误消息通过 "invalid use of template-name 'Stack' without an argument list".
来提示错误
示例:
template<class T> bool Stack<T>::empty() {
return container.empty();
}
模板方法的实现应该包含在头文件中。参见 this question。
编辑:
关于您的最新示例,您混淆了两个解决方案。试试:
#include <vector>
template <class T>
class Stack {
private:
std::vector<T> container;
public:
Stack() : container(0)
{
}
bool empty() {
return container.empty();
}
};
或
#include <vector>
template <class T>
class Stack {
private:
std::vector<T> container;
public:
Stack();
bool empty();
};
template<class T>
Stack<T>::Stack() : container(0)
{
}
template<class T>
bool Stack<T>::empty()
{
return container.empty();
}
在第一个解决方案中,您在 class 的定义中定义函数。编译器知道你在classStack<T>
上工作,你千万不要提醒它。在第二种解决方案中,函数是在 class 之外定义的。在这里,您必须指定要定义的 class' empty
方法和构造函数。
我正在用 C++ 实现基于 vector 的模板化 Stack 结构。我不确定我的代码有什么问题。
Stack.h
#ifndef STACK_H_
#define STACK_H_
#include <vector>
using namespace std;
template <class T>
class Stack {
public:
Stack();
virtual ~Stack();
bool empty();
int size();
void push(T pushvar);
T pop();
private:
std::vector<T> container;
};
#endif /* STACK_H_ */
Stack.cpp
#include "Stack.h"
#include <vector>
//template <class T>
Stack::Stack()
:container(0)
{
}
Stack::~Stack() {
// TODO Auto-generated destructor stub
}
bool Stack::empty(){
return (container.empty());
}
甚至在从 main 调用任何东西之前,Eclipse 就给了我几个错误。但我会给出一个示范性的主要内容:
#include <iostream>
#include "Stack.cpp"
using namespace std;
int main() {
Stack<int> s;
cout << s.empty();
return (0);
}
编译器returns出现以下错误:
Description Resource Path Location Type
'container' was not declared in this scope Stack.cpp /PracticeCpp/src line 23 C/C++ Problem
'template<class T> class Stack' used without template parameters Stack.cpp /PracticeCpp/src line 22 C/C++ Problem
invalid use of template-name 'Stack' without an argument list Stack.cpp /PracticeCpp/src line 12 C/C++ Problem
invalid use of template-name 'Stack' without an argument list Stack.cpp /PracticeCpp/src line 18 C/C++ Problem
Member declaration not found Stack.cpp /PracticeCpp/src line 12 Semantic Error
Member declaration not found Stack.cpp /PracticeCpp/src line 18 Semantic Error
Member declaration not found Stack.cpp /PracticeCpp/src line 22 Semantic Error
Method 'empty' could not be resolved Stack.cpp /PracticeCpp/src line 23 Semantic Error
Symbol 'container' could not be resolved Stack.cpp /PracticeCpp/src line 13 Semantic Error
我知道我没有实现头文件中声明的所有方法,但这不是我的问题。在我继续意识到它们之前,我想了解我哪里错了?
回答后更正:
我遵循了答案中的建议,但我仍然不明白还有什么问题。我将模板实现移到了页眉。我删除了其他未实现的方法以避免混淆。现在我的 .cpp 文件是空的。 我的新头文件:
#ifndef STACK_H_
#define STACK_H_
#include <vector>
template <class T>
class Stack {
private:
std::vector<T> container;
public:
template <typename T>
Stack<T>::Stack() : container(0)
{
}
template <class T>
bool Stack::empty() {
return container.empty();
}
};
#endif /* STACK_H_ */
定义应该是
template <typename T>
Stack<T>::Stack() : container(0)
{
}
并且不在 .cpp 中
从未声明方法 Stack::empty()
,您声明了 Stack<T>::empty()
。彼此的构造函数、运算符和方法也是如此。向每个实现添加模板声明以修复此错误。请注意,错误消息通过 "invalid use of template-name 'Stack' without an argument list".
示例:
template<class T> bool Stack<T>::empty() {
return container.empty();
}
模板方法的实现应该包含在头文件中。参见 this question。
编辑:
关于您的最新示例,您混淆了两个解决方案。试试:
#include <vector>
template <class T>
class Stack {
private:
std::vector<T> container;
public:
Stack() : container(0)
{
}
bool empty() {
return container.empty();
}
};
或
#include <vector>
template <class T>
class Stack {
private:
std::vector<T> container;
public:
Stack();
bool empty();
};
template<class T>
Stack<T>::Stack() : container(0)
{
}
template<class T>
bool Stack<T>::empty()
{
return container.empty();
}
在第一个解决方案中,您在 class 的定义中定义函数。编译器知道你在classStack<T>
上工作,你千万不要提醒它。在第二种解决方案中,函数是在 class 之外定义的。在这里,您必须指定要定义的 class' empty
方法和构造函数。