私はC++の経験がありますが、最近は仕事でのみpythonを使用しており、非常に錆びています。各ファイルを以下に示します。
main.cpp
#include "stack.h"
int main(int argc, char** argv){
return 0;
}
stack.h
#ifndef STACK_H
#define STACK_H
#define NULL 0
template <class elementType>
class stack{
struct node
{
elementType data;
node* next;
};
node* top;
public:
stack(){
top = NULL;
}
~stack(){
node temp = top;
while (top != NULL){
top = top->next;
delete temp;
}
}
void push(elementType x){
node temp = new node();
temp.data = x;
temp.next = top;
top = temp;
}
elementType pop(){
node temp = top;
top = top->next;
return temp;
}
bool isEmpty(){
return top == NULL;
}
};
#endif //STACK_H
makefile
a.out : main.o stack.o
gcc -o a.out main.o stack.o
main.o : main.cpp stack.h
gcc -O -c main.cpp
stack.o : stack.h
gcc -O -c stack.h
clean :
rm main.o stack.o
したがって、cd
プロジェクトディレクトリにアクセスして次のように入力すると、次のようにmake
なります。
gcc -O -c main.cpp
gcc -O -c stack.h
stack.h:7:10: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
make: *** [stack.o] Error 1
私は解決策を探していましたが、私のコードが正しいと言える限りです。私は実際のスタック実装の助けを探していません、そして私はこのコードが空のメインで実際には何もしないことに気づきます、しかし私はこのコンパイルエラーを修正することができないようです。