标签: ios memory-management
在Xcode 6中:
int i = 17; printf ("i stores its value at %p\n", &i);
我会看到这样的事情:
i stores its value at 0xbffff738
但在Xcode 7中,其输出格式为:
i stores its value at 0x7fff5fbff7cc
有人可以解释一下这个区别吗?
答案 0 :(得分:0)
它与构建的架构有关。第一个是32位地址。第二个是64位地址。