深圳夜归人

繁华的都市,有谁记得我们的脚步?

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

上次写给一个朋友看的。

#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...

不要乱发,小心被爆头。。

posted on 2005-08-02 16:05  cpunion  阅读(548)  评论(1编辑  收藏  举报