摘要:
阅读全文
摘要:
小侄子丢了九毛钱,甚是烦恼...TEST 阅读全文
摘要:
我们经常用到的是#pragma comment(lib,"*.lib")这类的。#pragma comment(lib,"Ws2_32.lib")表示链接Ws2_32.lib这个库。 和在工程设置里写上链入Ws2_32.lib的效果一样,不过这种方法写的 程序别人在使用你的代码的时候就不用再设置工程settings了 阅读全文
摘要:
<http://www.regexlab.com/zh/regref.htm>引言 正则表达式(regular expression)就是用一个“字符串”来描述一个特征,然后去验证另一个“字符串”是否符合这个特征。比如 表达式“ab+” 描述的特征是“一个 'a' 和 任意个 'b' ”,那... 阅读全文
摘要:
Today when i was using svn, i found that the files under the directory created by me is read-only and can not be updated by myself, i search the internet and the help document of svn, at last i found ... 阅读全文
摘要:
The unique identifier of the win32 class is the class name in one processcode: 阅读全文
摘要:
Teach Yourself Programming in Ten Years Peter Norvig Why is everyone in such a rush? Walk into any bookstore, and you'll see how to Teach Yourself Java in 7 Days alongside endless variations offering... 阅读全文
摘要:
在程序传输的过程中,为了保持平台的兼容性(字节存储顺序),可以定义下面的宏函数,进行处理。#ifdef LITTLE_ENDIAN_HOST#define Swap16IfLE(s) \ ((CARD16) ((((s) & 0xff) << 8) | (((s) >> 8) & 0xff)))#define Swap32IfLE(l) \ ((CARD32... 阅读全文