上次写给一个朋友看的。
#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...
不要乱发,小心被爆头。。