比如有两个结构体
struct str1{ int a; }; struct str2{ int b; }; struct str1 s1; s1->a = 5;
请问如何通过s1->a = 5;这一句判断出a是str1中的成员呢