我正在尝试使用C++编程语言和功能(例如继承等)构建链接列表应用程序。

我已将接口(interface)和实现拆分为不同的文件,但无法编译。

以下是文件列表

接口(interface)文件:-node.h,abstractList.h,singleLinkedList.h

实现文件:singleLinkedList.cpp

节点

#ifndef NODE_H
#define NODE_H

#include <iostream>

struct nodeType {
        int data;
        struct nodeType *next;
}listNode;


#endif

abstractList.h
#ifndef ABSTRACT_LIST_H
#define ABSTRACT_LIST_H

#include <iostream>
#include "node.h"
#include "singleLinkedList.h"

class abstractList {
        public:
        virtual ~abstractList();
        virtual bool isEmpty(Node* ) = 0;
        virtual int get(const int&) = 0;
        virtual int indexOf(const int& ) = 0;
        virtual Node insert(const int& , const int& ) = 0;
        virtual void delete(const int& ) = 0;
};

#endif

singleLinkedList.h
#ifndef SINGLE_LIST_H
#define SINGLE_LIST_H

#include <iostream>
#include "node.h"
#include "abstractList.h"

class singleLinkedList : public abstractList {

        public:

        singleLinkedList();
        ~singleLinkedList();
        Node populateList( );

        private:

        void checkIndex();
        int data;
        Node head;
};

#endif

到目前为止,我刚刚在实现文件中编码了populateList()函数,这里是实现文件。

singleLinkedList.cpp
#include <iostream>
#include "node.h"
#include "singleLinkedList.h"
#include "abstractList.h"


    Node singleLinkedList :: populateList()
    {
            Node temp;
            int data;
            temp = head;
            char ch;
            std::cout<<"Enter Data? (y/n) " << std::endl;
            std::cin>>ch;

            while(ch == 'Y' || ch == 'y')
            {
                    std::cout<<"Enter the data that you would like to store.\n"<<std::endl;
                    std::cin>>data;
                    temp = new Node();
                    temp->data = data;
                    temp->next = head;
                    head = temp;
                    std::cout<<"Enter more data?"<<std::endl;
                    std::cin>>"\n">>ch;
            }

            return temp;
    }

当我给g++ -c singleLinkedList.cpp时,我收到很多错误。我很确定我做过一些愚蠢的事情。任何人都可以指出我的错误吗?

编辑:与特定问题的错误日志。
struct nodeType {
int data;
struct nodeType *next;
}listNode;

虚拟listNode * insert();

以上说法正确吗?

谢谢
凯莉

最佳答案

delete是C++中的关键字,您不能将其用作方法名称。您需要在此处使用其他名称:

class abstractList {
        public:
        //...
        virtual void delete(const int& ) = 0;
        //-----------^^^^^^ rename this.
};

关于c++ - 有关在g++中编译C++应用程序的问题(可能是#ifndef),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7061899/

10-12 05:12