![]() |
#2
gz812009-07-27 20:12
|
int main()
{
cout.operator<<("hi");
return 0;
}
输出的结果是:0x442000 而不是 hi
就是说,cout.operator<<("hi");跟cout<<"hi"; 不是完全等价的,有谁可以解释一下这是为什么?