voidfoo() { char *str1 = "aaaaa"; // aaaaa 在.CONST (静态数据区), str1在栈内 char str2[] = "bbbbb"; // bbbbb 在.CONST, //这个函数被调用时 bbbbb被mov到栈内(复制) //str2在栈内}