随笔 - 193
文章 - 0
评论 - 5
阅读 -
22133
07 2007 档案
strcpy_s与strcpy安全性的比较
摘要:在VC2005的CRT中,增加了一些具有更强安全性的CRT函数,例如strcpy_s, strncat_s等。 (MSDN: <Security Enhancements in the CRT > Significant enhancements have been made to make the
阅读全文
自定义std::set比较函数的例子
摘要:自定义std::set比较函数的例子 struct GenStatus{ DWORD dwId; DWORD dwLastHitTick; GenStatus() : dwId(0), dwLastHitTick(0){} static unsigned int inline GetRefeshIn
阅读全文