1. ホーム
  2. c++

[解決済み] 不明な型名エラー

2022-02-11 07:35:04

質問

xcodeが突然、私が作成した Note クラス(これは非常に頻繁に使用されます)があります。

クラスヘッダーはこんな感じです。

class Note : public Playable{

private:

public:

    double theta;
    double frequency;
    int duration; 
    int startTime; // tussen 1 en 32
    int measureNumber;
    float velocity;
    Playable *track;
    virtual float getValue();

    static double calculateNoteFrequency(int aOctaveNumber, note_name aNoteName);

    Note(double aFreq, float aVelocity, int aDuration, int aMeasureNumber, int aStarttimeInsideMeasure, Playable *aTrack){
//      theta = 0;
        Note();
        frequency = aFreq;
        duration = aDuration;
        velocity = aVelocity;
        measureNumber = aMeasureNumber;
        startTime = aStarttimeInsideMeasure;
        track = aTrack;
    }

    Note(){
        theta = 0;
    }
    void toString();

};

EDIT

以下は、コンパイラのエラーメッセージの全文です。

In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Note.cpp:9:
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Note.h:14:
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Track.h:16:
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Pattern.h:19:12: error: use of undeclared identifier 'Note'
    vector<Note> notelist;
           ^
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Pattern.h:19:18: error: C++ requires a type specifier for all declarations
    vector<Note> notelist;
                 ^~~~~~~~
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Pattern.h:23:12: error: use of undeclared identifier 'Note'
    vector<Note> getNotelist();
           ^
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Pattern.h:23:18: error: C++ requires a type specifier for all declarations
    vector<Note> getNotelist();
                 ^~~~~~~~~~~
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Pattern.h:24:18: error: unknown type name 'Note'
    void addNote(Note const &note){
                 ^
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Pattern.h:24:23: error: expected ')'
    void addNote(Note const &note){
                      ^
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Pattern.h:24:17: note: to match this '('
    void addNote(Note const &note){
                ^
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Note.cpp:9:
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Note.h:14:
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Track.h:17:
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Synth.h:11:
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Oscillator.h:21:18: error: unknown type name 'Note'
    void setNote(Note &aNote);
                 ^
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Oscillator.h:23:20: error: unknown type name 'Note'
    float getValue(Note &note);
                   ^
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Note.cpp:9:
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Note.h:14:
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Track.h:17:
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Synth.h:47:21: error: unknown type name 'Note'
    float getSample(Note &note);
                    ^
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Note.cpp:9:
In file included from /Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Note.h:14:
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Track.h:30:17: error: use of undeclared identifier 'Note'
        multimap<long, Note> noteList;
                       ^
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Track.h:30:23: error: C++ requires a type specifier for all declarations
        multimap<long, Note> noteList;
                             ^~~~~~~~
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Track.h:33:2: error: unknown type name 'Note'
        Note &addNoteAndReturnReference(Note &note);
        ^
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Track.h:33:34: error: unknown type name 'Note'
        Note &addNoteAndReturnReference(Note &note);
                                        ^
/Users/osxursnm/Development/SynthSequencer2/SynthSequencer2/Track.h:34:18: error: unknown type name 'Note'
        void removeNote(Note &note);
                        ^
14 errors generated.

解決方法は?

推測するに、クロスリファレンスに問題があるのではないでしょうか。

Note.h を含めると Track.h という型のオブジェクトを使用します。 Note . には前方宣言を使用します。 Note の中で Track.h ファイルを作成し、その中に Note.h ファイルのみで Track.cpp .

で試してみてください。

class Note;

クラス宣言の前に Track の中で Track.h ファイルを削除し #include "Note.h" という文がファイルの先頭にあります。