1. ホーム
  2. c

[解決済み】エラー。非スカラー型への変換を要求された

2022-02-01 20:56:42

質問

この構造体をmallocしようとして、ちょっとした問題が発生しています。 以下は、この構造体のコードです。

typedef struct stats {                  
    int strength;               
    int wisdom;                 
    int agility;                
} stats;

typedef struct inventory {
    int n_items;
    char **wepons;
    char **armor;
    char **potions;
    char **special;
} inventory;

typedef struct rooms {
    int n_monsters;
    int visited;
    struct rooms *nentry;
    struct rooms *sentry;
    struct rooms *wentry;
    struct rooms *eentry;
    struct monster *monsters;
} rooms;

typedef struct monster {
    int difficulty;
    char *name;
    char *type;
    int hp;
} monster;

typedef struct dungeon {
    char *name;
    int n_rooms;
    rooms *rm;
} dungeon;

typedef struct player {
    int maxhealth;
    int curhealth;
    int mana;
    char *class;
    char *condition;
    stats stats;
    rooms c_room;
} player;

typedef struct game_structure {
    player p1;
    dungeon d;
} game_structure;

そして、これが私が問題視しているコードです。

dungeon d1 = (dungeon) malloc(sizeof(dungeon));

error: conversion to non-scalar type requested" というエラーが出ます。 なぜこのようなことが起こるのか、どなたか教えていただけませんか?

どうすればいいですか?

構造体型に何かをキャストすることはできません。 あなたが書こうとしたのは、次のようなことでしょう。

dungeon *d1 = (dungeon *)malloc(sizeof(dungeon));

の戻り値をキャストしないでください。 malloc() をC言語で書いてください。

dungeon *d1 = malloc(sizeof(dungeon));

を隠すことなく、問題なく動作します。 #include のバグを発見しました。