我在使用 Stack 类时遇到了一些麻烦。在我看来一切都很好,但我可能会遗漏一些东西。我认为这可能与makefile有关,因为我对makefile并不是那么好。
我还查看了一些不同的问题,但没有找到任何解决我问题的方法。
这是我正在编译的所有代码以及makefile。
堆栈.h:
#ifndef STACK_H
#define STACK_H
#include "Node.h"
template<class Type>
class Stack
{
public:
Stack();
void push(Type );
Type pop();
bool isEmpty() const;
protected:
Node<Type> *head;
};
#endif
堆栈.cpp:
#include "Stack.h"
template<class Type>
Stack<Type>::Stack()
{
head = NULL;
}
template<class Type>
void Stack<Type>::push(Type element)
{
Node<Type> *newNode;
newNode = new Node<Type>;
newNode->data = element;
newNode->next = head;
head = newNode;
}
template<class Type>
Type Stack<Type>::pop()
{
Node<Type> *current = head;
Type element = current->data;
head = head->next;
delete current;
return element;
}
template<class Type>
bool Stack<Type>::isEmpty() const
{
return head == NULL;
}
节点.h:
#ifndef NODE_H
#define NODE_H
#include "Matrix.h"
template<class Type>
struct Node
{
Type data;
Node<Type> *next;
};
#endif
主.cpp:
#include "Stack.h"
#include <iostream>
using namespace std;
int main()
{
Matrix m1;
Matrix m2(1, 2, 3, 4);
Matrix m3;
m3 = m1 + m2;
Stack<Matrix> stack;
cout << stack.isEmpty() << endl;
return 0;
}
生成文件:
all: matrix
matrix: removal main.o Matrix.o Stack.o
g++ -o matrix main.o Matrix.o Stack.o
main.o: main.cpp
g++ -c -g main.cpp
Matrix.o: Matrix.cpp
g++ -c -g Matrix.cpp
Stack.o: Stack.cpp
g++ -c -g Stack.cpp
removal:
rm -f *.o
如果您需要查看 Matrix.h/Matrix.cpp,请告诉我。它们只是用于对矩阵进行数学运算,据我所知并没有引起任何问题(它们编译得很好)。