我在使用Stack类时遇到了一些麻烦。一切看起来都很好,但我可能会遗漏一些东西。我认为它可能与makefile有关,因为我对makefile并不是那么好。
我还看了几个不同的问题,但找不到能解决我问题的任何问题。
以下是我正在编译的所有代码以及makefile。
Stack.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
Stack.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;
}
Node.h:
#ifndef NODE_H
#define NODE_H
#include "Matrix.h"
template<class Type>
struct Node
{
Type data;
Node<Type> *next;
};
#endif
main.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,请与我们联系。它们只是用于对矩阵进行数学运算,并且就我所知(它们编译得很好)而言没有引起任何问题。