真正的 C++ 内存模型! (未完工) void modify(int *pa) { int *pb = pa + 1; *pb = 9; } int func() { int a = 4; int b = 5; modify(&a); return b; // 5 还是 9? }