






















上次写给一个朋友看的。
#include <iostream>
using namespace std;
struct Test
{
Test& operator ( ) ( )
{
cout << "当";
return *this;
}
};
int main()
{
Test () () () () () () () () () ();
cout << endl;
cout << "Only you..." << endl;
return 0;
}
输出结果:
当当当当当当当当当
Only you...
不要乱发,小心被爆头。。
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。