有人可以告诉我这段代码有什么问题:
#include <stdio.h>
#include <stdlib.h>
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#define container_of(ptr, type, member) ({ \
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
(type *)( (char *)__mptr - offsetof(type,member) );})
typedef struct _elem {
int a;
float b;
double c;
} elem;
int main(int argc, char **argv)
{
elem *my_elem = (elem *)malloc(sizeof *elem);
my_elem->a = 1;
my_elem->b = 2;
my_elem->c = 3;
elem *new_elem_a = container_of(&(my_elem->a), struct _elem, int);
fprintf(stdout, "container_of(&(my_elem->a), struct _elem, int) = %p", new_elem_a);
return 0;
}
当我编译时,我得到了这个错误:
evariste@UnixServer:~$ gcc -Wall container_of_test.c -o container_of_test
container_of_test.c: In function ‘main’:
container_of_test.c:16:51: erreur: expected expression before ‘elem’
container_of_test.c:21:32: erreur: expected identifier before ‘int’
container_of_test.c:21:32: erreur: expected identifier before ‘int’
感谢您的帮助。
答案 0 :(得分:2)
这里有2个错误
该container_of宏期望最后一个参数是成员名称。所以它应该是
elem *new_elem_a = container_of(&(my_elem->a), struct _elem, a);
elem *my_elem = (elem *)malloc(sizeof *elem)
对sizeof有错误的操作数,它应该是
elem *my_elem = (elem *)malloc(sizeof *my_elem)