错误:''尚未声明

时间:2010-03-07 18:12:35

标签: c++ compiler-errors

我正在尝试实现链接列表,但在编译时遇到错误:

  

intSLLst.cpp:38:错误:'intSLList'尚未声明

intSLList看起来已经向我宣告了,所以我真的很困惑。

intSLLst.cpp

#include <iostream>
#include "intSLLst.h"


int intSLList::deleteFromHead(){
}

int main(){

}

intSLLst.h

#ifndef INT_LINKED_LIST
#define INT_LINKED_LIST
#include <cstddef>

class IntSLLNode{
  int info;
  IntSLLNode *next;

  IntSLLNode(int el, IntSLLNode *ptr = NULL){
    info = el; next = ptr;
  }

};

class IntSLList{
 public:
  IntSLList(){
    head = tail = NULL;
  }

  ~IntSLList();

  int isEmpty();
  bool isInList(int) const;

  void addToHead(int);
  void addToTail(int);

  int deleteFromHead();
  int deleteFromTail();
  void deleteNode(int);

 private:
  IntSLLNode *head, *tail;

};

#endif

2 个答案:

答案 0 :(得分:15)

您使用的是小写字母

int intSLList::deleteFromHead(){
}

应该是

int IntSLList::deleteFromHead(){
}

c ++中的名称始终区分大小写。

答案 1 :(得分:12)

intSLListIntSLList不同。这不是Pascal。 C ++区分大小写。