我正在尝试实现一个链表,但是在编译时出现错误:



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

最佳答案

您使用的是小写字母

int intSLList::deleteFromHead(){
}

应该
int IntSLList::deleteFromHead(){
}

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

关于c++ - 错误: '' has not been declared,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2397309/

10-11 22:42