私は、C++ でリンク リストを実装するように求められる割り当てに取り組んでいます。これまでのところ、新しいリストを作成しているときを除いて、すべてがうまく機能しています。私の方法でcreate_list()
。コンテンツと ID 番号を my に割り当てField
て呼び出そうとすると、「C++ 構文とオブジェクト指向プログラミングはまだ初めてですGetNext()
」というエラーが表示されます。Request for member 'GetNext()' in 'Node' which is a non-class type '*Field'.
私は何を間違っていますか?Field *Node = new Field(SIZE, EMPTY);
行を使用して、変数Node
がクラス型になると思いましたField
...?
#include <iostream>
#include <ctype.h>
using namespace std;
typedef enum { EMPTY, OCCUPIED } FIELDTYPE;
// Gameboard Size
int SIZE;
class Field {
private:
int _SquareNum;
FIELDTYPE _Content;
Field* _Next;
public:
// Constructor
Field() { }
// Overload Constructor
Field(int SquareNum, FIELDTYPE Entry) { _SquareNum = SquareNum; _Content = Entry; }
// Get the next node in the linked list
Field* GetNext() { return _Next; }
// Set the next node in the linked list
void SetNext(Field *Next) { _Next = Next; }
// Get the content within the linked list
FIELDTYPE GetContent() { return _Content; }
// Set the content in the linked list
void SetContent(FIELDTYPE Content) { _Content = Content; }
// Get square / location
int GetLocation() { return _SquareNum; }
// Print the content
void Print() {
switch (_Content) {
case OCCUPIED:
cout << "Field " << _SquareNum << ":\tOccupied\n";
break;
default:
cout << "Field " << _SquareNum << ":\tEmpty\n";
break;
}
}
}*Gameboard;
ここに私の create_list() メソッドがあります:
void create_list()
{
int Element;
cout << "Enter the size of the board: ";
cin >> SIZE;
for(Element = SIZE; Element > 0; Element--){
Field *Node = new Field(SIZE, EMPTY);
Node.GetNext() = Gameboard; // line where the error is
Gameboard = Node;
}
}