
语言
来不及走
这个作者很懒,什么都没留下…
展开
-
我所接触过的编程语言
从事这一行,原创 2014-04-13 20:21:53 · 598 阅读 · 0 评论 -
分享一段优雅的代码,测试编译通过。摘自《设计模式沉思录》,稍作修改,否则编译不过
#include #include #include using namespace std;template class TEvent{public:class Handler{public:Handler(){registry.push_back(this);}virtual int handleEvent(const T& t) = 0;};static void notify (TEven原创 2014-08-10 10:24:22 · 743 阅读 · 0 评论