c – error:”尚未声明

前端之家收集整理的这篇文章主要介绍了c – error:”尚未声明前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试实现链接列表,但在编译时会收到错误

intSLLst.cpp:38: error: ‘intSLList’ has not been declared

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&C++相关文章