摘要: http://codex.wordpress.org.cn/首页 阅读全文
posted @ 2009-09-22 22:54 weRtogether 阅读(120) 评论(0) 推荐(0) 编辑
摘要: http://man.chinaunix.net/newsoft/vi/doc/help.htmlhttp://blog.chinaunix.net/ 阅读全文
posted @ 2009-09-22 22:29 weRtogether 阅读(128) 评论(0) 推荐(0) 编辑
摘要: ATLTIME_INLINE CTime::CTime(const SYSTEMTIME& sysTime, int nDST) throw(){ if (sysTime.wYear < 1900) { __time64_t time0 = 0L; CTime timeT(time0); *this = timeT; } else { CTime timeT( (int)sysTim... 阅读全文
posted @ 2009-09-22 14:49 weRtogether 阅读(1167) 评论(0) 推荐(0) 编辑
摘要: 对于内存管理程序。程序员可能犯的错误是: z 分配一个内存块并使用其中未经初始化的内容; z 释放一个内存块但继续引用其中的内容; z 调用 realloc 对一个内存块进行扩展,因此原来的内容发生了存储位置的变化,但程序引用的仍是原来存储位置的内容; z 分配一个内存块后即“失去”了它,因为没有保存指向所分配内存块的指针; z 读写操作越过了所分配内存块的边界; z 没有对错误情况进行检查。 阅读全文
posted @ 2009-09-22 14:33 weRtogether 阅读(139) 评论(0) 推荐(0) 编辑