由于特定原因,我想通过取消引用结构的指针来访问结构的第一个成员。
我想知道这是否合法,或者在某些情况下是否会导致UB;什么是正确的解决方案,如果这个有任何问题。
谢谢。
#include <stdio.h>
#include <stdlib.h>
typedef struct test_s
{
void * data ;
struct test_s * next ;
} test_t ;
int main( void )
{
test_t * t = calloc( 1 , sizeof( test_t ) ) ;
int n = 123;
t->data = &n ; //int is used only for an address, this could be anything, an object for example
void ** v = ( void* )t ;
printf("Address of n: %p\nAddress of *t: %p\n\n" , &n , *v ) ; //dereference the pointer to struct to access its first member
return 0;
}
答案 0 :(得分:9)
是的,这是合法的。从C99,6.7.2.1.13:
指向适当转换的结构对象的指针指向其初始成员(或者如果该成员是位字段,则指向它所在的单元),反之亦然。在结构对象中可能有未命名的填充,但不是在它的开头。
答案 1 :(得分:4)
是的,这是100%合法的:C标准指定指向struct
的指针必须始终等于指向struct
的初始成员的指针。