вперед объявление структуры в C? - PullRequest
35 голосов
/ 03 апреля 2012
#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;
}

Я что-то здесь упускаю.Пожалуйста, помогите мне исправить это.Благодаря.

Ответы [ 2 ]

34 голосов
/ 03 апреля 2012

Попробуйте это

#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;
}
32 голосов
/ 06 апреля 2015

Структура (без определения типа) часто должна (или должна) быть с ключевым словом struct при использовании.

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

Если вы напечатаете свою структуру, вы можете пропустить ключевое слово struct.

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

Обратите внимание, что разрешено повторно использовать имя структуры

Попробуйте изменить предварительную декларацию на это в вашем коде:

typedef struct context context;

Возможно, было бы удобнее добавить суффикс для указания имени структуры и имени типа:

typedef struct context_s context_t;
...