理解C结构

时间:2015-05-20 16:43:23

标签: c pointers struct function-pointers forward-declaration

我试图了解以下C结构中发生了什么:

mvn cargo:stop

来自https://github.com/ohler55/oj/blob/master/ext/oj/parse.h#L59

我不清楚#74行(上面列出的#22)的内容。

从:

开始
/* EXCERPT from LINES 59-90 */
/* parse.h
 * Copyright (c) 2011, Peter Ohler
 * All rights reserved.
 */

typedef struct _ParseInfo {
    // used for the string parser
    const char      *json;
    const char      *cur;
    const char      *end;
    // used for the stream parser
    struct _Reader  rd;

    struct _Err     err;
    struct _Options options;
    VALUE       handler;
    struct _ValStack    stack;
    CircArray       circ_array;
    int         expect_value;
    VALUE       proc;
    VALUE       (*start_hash)(struct _ParseInfo *pi);
    void        (*end_hash)(struct _ParseInfo *pi);
    VALUE       (*hash_key)(struct _ParseInfo *pi, const char *key, size_t klen);
    void        (*hash_set_cstr)(struct _ParseInfo *pi, Val kval, const char *str, size_t len, const char *orig);
    void        (*hash_set_num)(struct _ParseInfo *pi, Val kval, NumInfo ni);
    void        (*hash_set_value)(struct _ParseInfo *pi, Val kval, VALUE value);

    VALUE       (*start_array)(struct _ParseInfo *pi);
    void        (*end_array)(struct _ParseInfo *pi);
    void        (*array_append_cstr)(struct _ParseInfo *pi, const char     *str, size_t len, const char *orig);
    void        (*array_append_num)(struct _ParseInfo *pi, NumInfo ni);
    void        (*array_append_value)(struct _ParseInfo *pi, VALUE value);

    void        (*add_cstr)(struct _ParseInfo *pi, const char *str, size_t len, const char *orig);
    void        (*add_num)(struct _ParseInfo *pi, NumInfo ni);
    void        (*add_value)(struct _ParseInfo *pi, VALUE val);
} *ParseInfo;

有人可以解释这些线路在做什么吗?

1 个答案:

答案 0 :(得分:2)

它们是function pointers,语法为:return-type (*pointer_name)(args)

然而,开发人员使用一种特殊技术,由第一个参数表示,它始终是指向_Parser结构的指针。它确实允许一种简单形式的面向对象编程,其中类可以具有专门作用于必须手动设置和处理的特定对象实例的方法。更多信息请参阅@ paxdiablo的优秀答案here

注意:由于您不允许使用_和大写名称为名称添加前缀,因此会对ISO C进行多次违规。更多信息here