一、struct 空结构体占多大内存???下面例子: #include <stdio.h> struct str { }; int main() { struct str obj1; struct str obj2; printf("%d\n", sizeof(struct str)); printf("%d, %ox\n", sizeof(obj1), &obj1); printf("%d, %ox\n", sizeof(obj2), &ob...