简体   繁体   English

指向结构和函数指针的指针->段故障

[英]Pointer to struct & function pointers -> Seg Fault

I always get a segmentation fault during execution of this test program. 在执行此测试程序期间,我总是遇到分段错误。 I can't figure out why. 我不知道为什么。 Maybe someone could explain it to me please, i'm sure i mixed up the pointer stuff. 也许有人可以向我解释一下,我确定我弄混了指针的内容。

#include <stdio.h>

struct xy {
    int         (*read)();
    void        (*write)(int);
};

struct z {
    struct xy    *st_xy;
};


static void write_val(int val)
{
    printf("write %d\n", val);
}

static int read_val()
{
    /* return something just for testing */
    return 100;
}

int init(struct xy *cfg)
{
    cfg->read = read_val;
    cfg->write = write_val;
    return 0;
}

int reset(struct z *st_z)
{
    /* write something just for testing */
    st_z->st_xy->write(111);

    return 55;
}

int main(int argc, char **argv)
{
    static struct z test;
    int ret;
    int ret2;

    ret = init(test.st_xy);
    printf("init returned with %d\n", ret);

    ret2 = reset(&test);
    printf("reset returned with %d\n", ret2);

    return 0;
}

You never allocate the actual xy object. 您永远不会分配实际的xy对象。 Your test.st_xy is just a garbage pointer that you're not allowed to dereference. 您的test.st_xy只是一个垃圾指针,不允许您取消引用。

Instead, do something like this: 相反,请执行以下操作:

 static struct z test;
 static struct xy inner_test;
 test.st_xy = &inner_test;

 // ...

 ret = init(test.st_xy);

You pass an uninitialized pointer to xy to the init function. 您将指向xy的未初始化指针传递给init函数。

init(test.st_xy);

st_xy has not been initialized. st_xy尚未初始化。 I think there is no need for st_xy to be a pointer. 我认为没有必要将st_xy用作指针。

struct z {
   struct xy st_xy;
};

int main(int argc, char **argv)
{
  static struct z test;
  init(&test.st_xy);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM