4
A
回答
6
gcc
至少處理以下四種情況是不同的:
char *globalstr = "immediate global string";
char globalbuf[] = "immediate global array of chars";
int main(int argc, char* argv[]) {
char *str = "immediate string";
char buf[] = "immediate array of chars";
return 0;
}
局部變量char *str
和全局變量char *str
被存儲到.rodata
部分:
$ readelf --hex-dump=.rodata foo
Hex dump of section '.rodata':
0x00400688 01000200 696d6d65 64696174 6520676c ....immediate gl
0x00400698 6f62616c 20737472 696e6700 696d6d65 obal string.imme
0x004006a8 64696174 65207374 72696e67 00 diate string.
局部變量char buf[]
存儲分配在運行時堆棧中,並通過.text
部分中的說明進行初始化:
$ readelf --hex-dump=.text foo
Hex dump of section '.text':
...
0x00400510 00000048 85c07408 bf480e60 00c9ffe0 ...H..t..H.`....
0x00400520 c9c39090 554889e5 4883ec50 897dbc48 ....UH..H..P.}.H
0x00400530 8975b064 488b0425 28000000 488945f8 .u.dH..%(...H.E.
0x00400540 31c048c7 45c8a406 4000c745 d0696d6d [email protected]
0x00400550 65c745d4 64696174 c745d865 206172c7 e.E.diat.E.e ar.
0x00400560 45dc7261 7920c745 e06f6620 63c745e4 E.ray .E.of c.E.
0x00400570 68617273 c645e800 b8000000 00488b55 hars.E.......H.U
0x00400580 f8644833 14252800 00007405 e897feff .dH3.%(...t.....
...
全局變量char buf[]
存儲在.data
部分:
$ readelf --hex-dump=.data foo
Hex dump of section '.data':
0x00601020 00000000 00000000 00000000 00000000 ................
0x00601030 00000000 00000000 00000000 00000000 ................
0x00601040 8c064000 00000000 00000000 00000000 [email protected]
0x00601050 00000000 00000000 00000000 00000000 ................
0x00601060 696d6d65 64696174 6520676c 6f62616c immediate global
0x00601070 20617272 6179206f 66206368 61727300 array of chars.
2
編譯器最有可能在.text
中存儲字符串文字。程序執行時.text
通常在只讀頁中分頁。
相關問題
- 1. 壓縮存儲在會話存儲中的字符串
- 2. 如何將字符串文字存儲在內存中的c + +?
- 3. 在字符串內存儲字符串?
- 4. 無法在會話中使用SharedPreferences存儲字符串android
- 5. 在字符串中存儲字符串
- 6. 打印存儲在字符串中的通用字符(html)C++
- 7. GAE webapp2_extras會話內存限制(在會話中存儲臨時圖像)
- 8. 如何使用動態內存在MIPS中存儲字符串?
- 9. 空字符串(「」)如何在Java中的內存中存儲?
- 10. 存儲在內存中的字符串常量在哪裏?
- 11. NoSQL存儲用於在內存中存儲圖像的內容?
- 12. 常量字符串將存儲在內存中的位置?
- 13. 字符串的方式存儲在內存中
- 14. 存儲在瀏覽器會話存儲器VS內存變量
- 15. C++中的字符串堆內存
- 16. 用於將字存儲在字符串中的優雅算法
- 17. 字符串存儲在目標C
- 18. 存儲在C字符串AVL樹
- 19. 存儲在會話
- 20. 用於會話存儲的Redis
- 21. 如何在.NET中的內存中存儲字符串和字符類型?
- 22. 在會話中存儲字典
- 23. 在mysql中存儲會話
- 24. 在會話中存儲UnityManager
- 25. wp_get_referer在會話中存儲
- 26. 在會話中存儲時間
- 27. 在會話中存儲日期時間
- 28. 如何在使用Spring MVC的會話中保存字符串?
- 29. 存儲字符串
- 30. 存儲字符串
'buf'沒有存儲在'.text'部分,我想你看的一系列指令將字符串數據複製到'buf',一次4個字節。 'buf'是一個自動變量,將在運行時在堆棧上創建。 – 2011-05-31 09:45:55
@Steve Jessop,哦,是的!謝謝。 :) – sarnold 2011-05-31 09:57:01