当我在我的 Linux x86_64 机器上编译并运行以下由 GCC 编译的 C 程序时:
#include <stdio.h>
int main(void)
{
char *p1 = "hello"; // Pointers to strings
char *p2 = "hello"; // Pointers to strings
if (p1 == p2) { // They are equal
printf("equal %p %p\n", p1, p2); // equal 0x40064c 0x40064c
// This is always the output on my machine
}
else {
printf("NotEqual %p %p\n", p1, p2);
}
}
我总是得到输出:
等于 0x40064c 0x40064c
我知道字符串存储在一个常量表中,但与动态分配的内存相比,地址太低了。
与以下程序进行比较:
#include <stdio.h>
int main(void)
{
char p1[] = "hello"; // char arrar
char p2[] = "hello"; // char array
if (p1 == p2) {
printf("equal %p %p\n", p1, p2);
}
else { // Never equal
printf("NotEqual %p %p\n", p1, p2); // NotEqual 0x7fff4b25f720 0x7fff4b25f710
// Different pointers every time
// Pointer values too large
}
}
这两个指针不相等,因为它们是两个可以独立操作的数组。
我想知道 GCC 是如何为这两个程序生成代码的,以及它们在执行过程中是如何映射到内存的。由于这已经记录了很多次,因此也欢迎任何指向文档的链接。