web-dev-qa-db-ja.com

Cの構造体の前方宣言?

#include <stdio.h>

struct context;

struct funcptrs{
  void (*func0)(context *ctx);
  void (*func1)(void);
};

struct context{
    funcptrs fps;
}; 

void func1 (void) { printf( "1\n" ); }
void func0 (context *ctx) { printf( "0\n" ); }

void getContext(context *con){
    con=?; // please fill this with a dummy example so that I can get this working. Thanks.
}

int main(int argc, char *argv[]){
 funcptrs funcs = { func0, func1 };
   context *c;
   getContext(c);
   c->fps.func0(c);
   getchar();
   return 0;
}

ここに何かがありません。これを修正するのを手伝ってください。ありがとう。

36
user1128265

これを試して

#include <stdio.h>

struct context;

struct funcptrs{
  void (*func0)(struct context *ctx);
  void (*func1)(void);
};

struct context{
    struct funcptrs fps;
}; 

void func1 (void) { printf( "1\n" ); }
void func0 (struct context *ctx) { printf( "0\n" ); }

void getContext(struct context *con){
    con->fps.func0 = func0;  
    con->fps.func1 = func1;  
}

int main(int argc, char *argv[]){
 struct context c;
   c.fps.func0 = func0;
   c.fps.func1 = func1;
   getContext(&c);
   c.fps.func0(&c);
   getchar();
   return 0;
}
36
stefan bachert

構造体(typedefなし)は、使用時にキーワードstructを使用する必要がある(または使用する必要がある)ことがよくあります。

struct A;                      // forward declaration
void function( struct A *a );  // using the 'incomplete' type only as pointer

構造体をtypedefする場合、structキーワードを省略できます。

typedef struct A A;          // forward declaration *and* typedef
void function( A *a );

構造体名を再利用することは合法であることに注意してください

コード内で前方宣言をこれに変更してみてください。

typedef struct context context;

構造体名と型名を示す接尾辞を追加すると読みやすくなる場合があります。

typedef struct context_s context_t;
34
Michael