对象空指针中的成员的值是0x8是怎么回事?
一段非常好玩的代码(其实是经常犯的错):struct TTest{ long long a; char b[10];};void test_nullpoint(){ TTest *ptTest = NULL; if(ptTest->b) { printf("%p\n", ptTest->b); printf("%p\n", &ptTest->a); }}i