#include#includeusingnamespacestd;#defineWIDTH40intBSS_global_uninit_a;intBSS_global_uninit_b;intstaticBSS_global_uninit_static_a;intstaticBSS_global_uninit_static_b;intDS_global_init_a=1;intDS" />

亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

進(jìn)程地址空間(二)

系統(tǒng) 1889 0
#include ? < iostream >
#include ? < iomanip >
#include ? < stdlib . h >
using ? namespace ? std;

#define ? WIDTH ? 40

int ? BSS_global_uninit_a;
int ? BSS_global_uninit_b;

int ? static ? BSS_global_uninit_static_a; ?
int ? static ? BSS_global_uninit_static_b;

int ? DS_global_init_a ? = ? 1 ;
int ? DS_global_init_b ? = ? 1 ;

int ? DS_global_init_static_a ? = ? 1 ; ?
int ? DS_global_init_static_b ? = ? 1 ; ?

int ? const ? TEXT_global_init_const_a ? = ? 1 ;
int ? const ? TEXT_global_init_const_b ? = ? 1 ;

int ? const ? static ? TEXT_global_init_const_static_a ? = ? 1 ;
int ? const ? static ? TEXT_global_init_const_static_b ? = ? 1 ;

void ? fun( int ? stack_fun_para)
{
??? int ? stack_fun_a ? = ? 1 ;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &stack_fun_para " ? < < ? & stack_fun_para ? < < ? endl; ? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &stack_fun_a " ? < < ? & stack_fun_a ? < < ? endl; ? ???
}

int ? main()
{
??? int ? stack_a ? = ? 1 ;
??? int ? stack_b ? = ? 1 ;
???
??? int ? static ? DS_main_static_a ? = ? 1 ; ?
??? int ? static ? DS_main_static_b ? = ? 1 ;

??? int ? * heap_a ? = ? ( int * )malloc( 4 );
??? int ? * heap_b ? = ? ( int * )malloc( 4 );

??? cout ? < < ? " **********STACK************* " ? < < ? endl;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &stack_a " ? < < ? & stack_a ? < < ? endl;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &stack_b " ? < < ? & stack_b ? < < ? endl;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &heap_a " ? < < ? & heap_a ? < < ? endl; ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &heap_b " ? < < ? & heap_b ? < < ? endl; ???
??? fun( 1 );

??? cout ? < < ? " **********HEAP************* " ? < < ? endl;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " heap_a " ? < < ? heap_a ? < < ? endl; ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " heap_b " ? < < ? heap_b ? < < ? endl; ???

??? cout ? < < ? " **********BSS************* " ? < < ? endl;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &BSS_global_uninit_static_a " ? < < ? & BSS_global_uninit_static_a ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &BSS_global_uninit_static_b " ? < < ? & BSS_global_uninit_static_b ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &BSS_global_uninit_a " ? < < ? & BSS_global_uninit_a ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &BSS_global_uninit_b " ? < < ? & BSS_global_uninit_b < < ? endl; ? ??? ???

??? cout ? < < ? " **********DS************* " ? < < ? endl;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &DS_global_init_a " ? < < ? & DS_global_init_a < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &DS_global_init_b " ? < < ? & DS_global_init_b ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &DS_global_init_static_a " ? < < ? & DS_global_init_static_a ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &DS_global_init_static_b " ? < < ? & DS_global_init_static_b ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &DS_main_static_a " ? < < ? & DS_main_static_a ? < < ? endl;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &DS_main_static_b " ? < < ? & DS_main_static_b ? < < ? endl;

??? cout ? < < ? " **********TEXT*********** " ? < < ? endl;
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &TEXT_global_init_const_a " ? < < ? & TEXT_global_init_const_a ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &TEXT_global_init_const_b " ? < < ? & TEXT_global_init_const_b < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &TEXT_global_init_const_static_a " ? < < ? & TEXT_global_init_const_static_a ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &TEXT_global_init_const_static_b " ? < < ? & TEXT_global_init_const_static_b ? < < ? endl; ? ??? ???
??? cout ? < < ? std : : left ? < < ? setw(WIDTH) ? < < ? " &string " ? < < ? & ( " hello " ) ? < < ? endl;

??? return ? 0 ;
}

?

?

?

root@ubuntu:~# ./a.out
**********STACK*************
&stack_a??????????????????????????????? 0xbfda54ec
&stack_b??????????????????????????????? 0xbfda54e8
&heap_a???????????????????????????????? 0xbfda54e4
&heap_b???????????????????????????????? 0xbfda54e0
&stack_fun_para???????????????????????? 0xbfda5470
&stack_fun_a??????????????????????????? 0xbfda545c
**********HEAP*************
heap_a????????????????????????????????? 0x93ad008
heap_b????????????????????????????????? 0x93ad018
**********BSS*************
&BSS_global_uninit_static_a???????????? 0x804b100
&BSS_global_uninit_static_b???????????? 0x804b104
&BSS_global_uninit_a??????????????????? 0x804b0f4
&BSS_global_uninit_b??????????????????? 0x804b0f8
**********DS*************
&DS_global_init_a?????????????????????? 0x804b03c
&DS_global_init_b?????????????????????? 0x804b040
&DS_global_init_static_a??????????????? 0x804b044
&DS_global_init_static_b??????????????? 0x804b048
&DS_main_static_a?????????????????????? 0x804b04c
&DS_main_static_b?????????????????????? 0x804b050
**********TEXT***********
&TEXT_global_init_const_a?????????????? 0x804967c
&TEXT_global_init_const_b?????????????? 0x8049680
&TEXT_global_init_const_static_a??????? 0x8049684
&TEXT_global_init_const_static_b??????? 0x8049688
&string??


進(jìn)程地址空間(二)


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫(xiě)作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫(xiě)作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長(zhǎng)會(huì)非常 感謝您的哦!!!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 手机看片久久高清国产日韩 | 中国一级毛片 | 日日日日日 | 国产人成久久久精品 | 国产精品自在线拍 | 99国产精品免费视频 | 午夜看一级特黄a大片黑 | 91久久精品视频 | 免费99视频| 亚洲免费资源 | 91伊人影院 | 69精品在线观看 | 久久综合中文字幕一区二区三区 | 亚洲欧美色综合一区二区在线 | 毛片福利视频 | 精品视频自拍 | 日韩亚洲欧美综合一区二区三区 | 最新亚洲精品国自产在线 | 好吊妞视频在线观看 | 色一色综合 | 久久精品视频在线 | 久久riav国产精品 | 欧美在线精品一区二区三区 | 欧美日韩中文字幕 | 欧美色域| 一 级做人爱全视频在线看 一a级毛片 | 亚洲欧美高清视频 | 国产无毛 | 亚洲天码中文字幕第一页 | 在线观看黄p免费 | 日日碰夜夜 | 看真人视频一一级毛片 | 日本一区二区三区精品 | 国产毛片在线高清视频 | 人人狠狠综合久久亚洲婷婷 | 国产精品综合一区二区 | 狠狠色噜噜狠狠狠狠色综合久 | 久久天天躁狠狠躁夜夜躁综合 | 91精品国产爱久久久久 | 成人免费黄色小视频 | 亚洲在线欧美 |