我正在尝试打印由指针指向的值,该指针本身也由指针指向。

我有2个结构

typedef struct s_thread_police
{
    l_hash *lhash;
    // other stuff for thread purpose
} thread_police_arg;

typedef struct s_l_hash
{
    struct s_l_hash* next;
    char* hash;
} *l_hash;


如何打印指向的结构的哈希值?

police_arg.lhash = &lhash;
printf("%s\n", *(police_arg.lhash)->hash);


编译器告诉我“错误:请求成员'hash'的对象不是结构体或联合体”

我尝试了其他方法,但都没有用
谢谢您的帮助

最佳答案

你要这个:

printf("%s\n", (*police_arg.lhash)->hash);


*police_arg.lhash为您提供l_hash,它是指向s_l_hash的指针,然后您可以取消引用以获取hash

09-27 20:53