关于cout

C++源代码如下


cout<

经IDA反汇编之后得出

.text:00401000                 mov     eax, ds:__imp_?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z ; std::endl(std::basic_ostream> &)     ;//将endl的地址放到eax当中
.text:00401005                 mov     ecx, ds:__imp_?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A ; std::basic_ostream> std::cout
.text:0040100B                 push    eax;//首先将endl或者'\n'的地址压入堆栈,作为第二参数(按照标准C的调用格式)
.text:0040100C                 push    1;//再将第一参数压入堆栈(也是按照标准C的调用格式)
.text:0040100E                 call    ds:__imp_??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z ; std::basic_ostream>::operator<<(int)              ;//调用<<操作符,其第二操作数是1,第一操作数是cout,存放在ecx当中
.text:00401014                 mov     ecx, eax;//在连续使用<<的情况下,将<<的第一操作数改变成endl,至于为什么笔者也不清楚
.text:00401016                 call    ds:__imp_??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z ; std::basic_ostream>::operator<<(std::basic_ostream> & (*)(std::basic_ostream> &));//输出endl
cout<<1;cout<

.text:00401000                 mov     ecx, ds:std::basic_ostream> std::cout
.text:00401006                 push    1
.text:00401008                 call    ds:std::basic_ostream>::operator<<(int);//这三步是将1 输出到屏幕上
.text:0040100E                 mov     eax, ds:std::endl(std::basic_ostream> &)
.text:00401013                 mov     ecx, ds:std::basic_ostream> std::cout
.text:00401019                 push    eax
.text:0040101A                 call    ds:std::basic_ostream>::operator<<(std::basic_ostream> & (*)(std::basic_ostream> &));//这三步是将endl输出到屏幕上

综上所述,对于cout<<...而言调用的函数地址是<<操作符,而不是我们认为的cout,而且该操作符有两个操作数,第一操作数放在ecx当中,是cout,第二操作数是要输出的内容,同时根据第二操作数的不同,可能调用的<<地址也是不同的,也就是我们说的多态,

问题:在连续使用<<时,第二次使用的<<的第一操作数为什么会改编成“endl”仍然不懂,请教路过的大神

你可能感兴趣的:(逆向工程)