2012年11月13日
摘要: Java与混型C++中存在一种叫混型的东西,他可以通过Template动态的构建继承链#include <string>#include <ctime>#include <iostream>using namespace std;template<class T> class TimeStamped : public T { long timeStamp;public: TimeStamped() { timeStamp = time(0); } long getStamp() { return timeStamp; }};template< 阅读全文
posted @ 2012-11-13 17:16 ZimZz 阅读(984) 评论(0) 推荐(0) 编辑