我思我能

I just CAN do any THing I CAN THink.

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

2012年10月1日

摘要: 1 #include <cstdlib> 2 #include <iostream> 3 4 using namespace std; 5 6 //// brige partten:Begin 7 class bri_Implementor 8 { 9 public: 10 virtual void optImpl() = 0; 11 }; 12 13 class bri_ImplementorA: public bri_Implementor 14 { public: 15 void optImpl() { std::cout ... 阅读全文
posted @ 2012-10-01 17:51 软件真理与光 阅读(467) 评论(0) 推荐(0) 编辑