1

私のコードにはエラーがあります (エラー C2512: 'ノード': 適切なデフォルト コンストラクターがありません) が、デフォルト コンストラクターがあるのはなぜですか ??? 私のエラーの場所はコードでコメントされています助けてください

Node.h

#pragma once
#include "stat.h"
#include "Automata.h"
#include <cstdlib>

class Node
{
    friend class Automata;
    friend class stat_a;
    friend stat_a* makeauto(char *str);
    friend int main();
private:
    stat_a* mess;
    char data;//harfi ke ba in masir estefadeh mishe :)
    Node *next;//node badi dar araye node ha class stat_a :)
public:
    Node()
    {
        mess = NULL;
        next = NULL;
    };
};

stat.h

#pragma once
#include "Node.h" 
#include <iostream>

using namespace std;
class stat_a
{
    friend class Automata;
    friend class Node;
    friend int main();
private:
    bool is_final_stat_a;        //aya final stat_a hast ???
    int  stat_a_num;              //shomareh halat 0,1,2,...
    Node *last;                  //akharin node dar araye node haye neshan dahande masir
    Node *first;                //Avalin node dar araye node haye neshan dahande masir
public:
    void add(char d,stat_a * a)//ezafeh kardan masiri ke ba estefadeh
    {                       //az harf (char d ) be halat (stat_a a) miravad
        if(first == NULL)
        {
            first = new Node;//error is here
            first->data = d;
            first->mess = a;
            last=first;
        }
        else
        {
            last->next = new Node ;//erorr is here
            last=last->next;
            last->data=d;
            last->next=NULL;
            last->mess=a;
        }
    };

    /***********************************************************************/

    void print()
    {
        cout<<stat_a_num<<"========> is final_stat_a : "<<is_final_stat_a<<endl;
        Node *a;

        a=first;
        while(a != NULL)
        {
            cout<<"========> By '"<<a->data<<"' go to stat "<<a->mess->stat_a_num<<endl;
            a=a->next;
        }
    };

    stat_a()
    {
        last=NULL;
        first=NULL;
        is_final_stat_a=false;
    };

    ~stat_a(void);
};

エラーが発生した理由

4

2 に答える 2