出于特定原因,我想通过取消引用指向结构的指针来仅访问结构的第一个成员。
我想知道这是否合法或在某些情况下会导致 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;
}