大海中的小鱼

不经历风雨,怎么见彩虹,没有人能够随随便便成功!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2005年11月9日

摘要: 先来看一小段代码,它取自 Bjarne Stroustrup 的演讲“Speaking C++ as a Native”: // use an object to represent a resource ("resource acquisition is initialization") class File_handle { // belongs in some support library FILE* p; public: File_handle(const char* pp, const char* r) { p = fopen(pp,r); if (p==0) throw Cannot_open(pp); } File_handle(const string& s, const char* r) { p = fopen(s.c_str(),r); if (p==0) throw Cannot_open(pp); } ~F 阅读全文

posted @ 2005-11-09 19:58 Scott.YU 阅读(1924) 评论(0) 推荐(0) 编辑

摘要: 先来看一小段代码,它取自 Bjarne Stroustrup 的演讲“Speaking C++ as a Native”: // use an object to represent a resource ("resource acquisition is initialization") class File_handle { // belongs in some support library... 阅读全文

posted @ 2005-11-09 19:50 Scott.YU 阅读(336) 评论(0) 推荐(0) 编辑