上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 63 下一页
摘要: 这是一篇程序员写给程序员的趣味读物。所谓趣味是指可以比较轻松地了解一些原来不清楚的概念,增进知识,类似于打RPG游戏的升级。整理这篇文章的动机是两个问题: 问题一: 使用Windows记事本的“另存为”,可以在GBK、Unicode、Unicode big endian和UTF-8这几种编码方式间相互转换。同样是txt文件,Windows是怎样识别编码方式的呢? 我 很早前就发现U... 阅读全文
posted @ 2008-08-06 22:23 能巴 阅读(259) 评论(0) 推荐(0) 编辑
摘要: In Visual C++ 2005, the ATL, MFC, Standard C++, and CRT libraries support the new deployment model available on Windows XP, Windows Server 2003, and Windows Vista. The DLLs corresponding to all Vis... 阅读全文
posted @ 2008-08-05 21:54 能巴 阅读(1623) 评论(0) 推荐(0) 编辑
摘要: 1、Google推出的3维聊天空间,可以设计自己的形象和房间 http://www.lively.com/ 2、可以在线听和免费下载最新《读者》《科幻世界》等著名杂志有声版,不用再买杂志 http://www.ilisten.cn/ZZ 3、可以一键免费把自己博客印成书的网站 http://blog.mrprint.cn 4、可以修改每一本书内容的在线图书馆 http://ww... 阅读全文
posted @ 2008-08-04 22:41 能巴 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 一、在调试模式下,new操作符号通过宏定义转换成了调试版本。 在文件头经常可以发现以下语句: #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif 其中,将new定义为DEBUG_NEW 二、DEBUG_NEW的处理 调试版本的new操作函数:void* ... 阅读全文
posted @ 2008-07-25 18:07 能巴 阅读(4501) 评论(0) 推荐(0) 编辑
摘要: C++ Class Templates are used where we have multiple copies of code for different data types with the same logic. If a set of functions or classes have the same functionality for different data types, ... 阅读全文
posted @ 2008-07-12 14:59 能巴 阅读(281) 评论(0) 推荐(0) 编辑
摘要: short usData = 0x1122; char *pucData = (char*)&usData; bool bBigEndian = (*pucData == 0x22); 阅读全文
posted @ 2008-07-01 16:38 能巴 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 1. '\0'----字符串结束符。代表了0x00。 2. strcpy,strcat等函数,期待'\0'在源字符串中的出现。必须出现才能copy或连接成功。 3. 最好在每次使用前均使用memset(&buf,0,sizeof(buf))清空数据区,保证没错 阅读全文
posted @ 2008-07-01 15:44 能巴 阅读(230) 评论(0) 推荐(0) 编辑
摘要: char string[1]; // string[10] is the boundary example to tell the extra '0' in a c style string will also be copied when copying. char *str1="0123456789"; strcpy(string, str1); // 11 char will be cop... 阅读全文
posted @ 2008-07-01 15:22 能巴 阅读(836) 评论(0) 推荐(0) 编辑
摘要: Things to Remember:在一个独立的语句中将 new 出来的对象存入智能指针。如果疏忽了这一点,当异常发生时,可能引起微妙的资源泄漏。 下面这个函数调用还是可能泄漏资源。为什么? processWidget(std::tr1::shared_ptr(new Widget), priority()); ... 阅读全文
posted @ 2008-07-01 01:31 能巴 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 1. STL的auto_ptr 缺点: 1)一个对象只能被一个auto_ptr所拥有,即所有权转移问题。 2)因此,它不能用在STL的container中,所以,非常不实用。 2. Boost的shared_ptr TR1中的std::tr1::shared_ptr就够了(#include ,use std :: tr1 :: shared_ptr using the VS2008 featur... 阅读全文
posted @ 2008-07-01 01:27 能巴 阅读(378) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 63 下一页