摘要: 考察以下代码:class AbstractBase{public: virtual IBase() = 0; virtual Interface() const = 0; virtual const char* Member() const {return _memb... 阅读全文
posted @ 2014-11-27 17:00 wu_overflow 阅读(376) 评论(0) 推荐(0) 编辑
摘要: #include #include DWORD WINAPI ThreadFunc (LPVOID);int main (){ std::ios::sync_with_stdio(false); HANDLE hThrd = NULL; DWORD threadId = 0; ... 阅读全文
posted @ 2014-11-27 12:07 wu_overflow 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 考察以下代码:#define IDENT 0#define OP *typedef int data_t;typedef struct{ long int len; data_t *data;}vec_rec, *vecptr;vec_ptr NewVec(long int len){ ... 阅读全文
posted @ 2014-11-27 11:52 wu_overflow 阅读(259) 评论(0) 推荐(0) 编辑