自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(2)
  • 资源 (6)
  • 收藏
  • 关注

原创 《精通正则表达式》笔记

 1. 多选结构(mm|gg) 表示匹配 "mm"或"gg" 2. 忽略大小写s/source/dest/i搜索source,将其替换为dest,此处的i只对source起作用,而不会作用于dest。 3. 单词分界符//> 用来匹配单词的结束比如: /cat/>匹配以"cat"结尾的单词,如scat则:/ 必须精确匹配 "cat" 4.

2009-08-22 01:15:00 1829 4

原创 effecctive STL(二)

条款26:尽量用iterator代替const_iterator,reverse_iterator和const_reverse_iterator有些函数只接受iterator类型的参数。const_iterator不能隐式转换成iterator,即使用变通的办法,也不通用,且不能保证高效。从reverse_iterator转换而来的iterator在转换之后可能需要相应的调整。

2009-08-09 23:34:00 1614

线性散列表(linear hash)

英文的讲线性hash的 ............ ............

2010-10-31

symbian C++入门教程

网友写的入门教程,一共30余页,都是基础知识…… 从开发环境,到安装包……

2009-05-12

VC 瞬间关机(使用RtlAdjustPrivilege和ZwShutdownSystem)

#include <windows.h> const unsigned int SE_SHUTDOWN_PRIVILEGE = 0x13; int main() { HMODULE hDll = ::LoadLibrary("ntdll.dll"); typedef int (* type_RtlAdjustPrivilege)(int, bool, bool, int*); typedef int (* type_ZwShutdownSystem)(int); type_RtlAdjustPrivilege RtlAdjustPrivilege = (type_RtlAdjustPrivilege)GetProcAddress(hDll, "RtlAdjustPrivilege"); type_ZwShutdownSystem ZwShutdownSystem = (type_ZwShutdownSystem)GetProcAddress(hDll, "ZwShutdownSystem"); int nEn = 0; int nResult = RtlAdjustPrivilege(SE_SHUTDOWN_PRIVILEGE, true, true, &nEn); if(nResult == 0x0c000007c) { nResult = RtlAdjustPrivilege(SE_SHUTDOWN_PRIVILEGE, true, false, &nEn); } nResult = ZwShutdownSystem(2); FreeLibrary(hDll); return 0; }

2009-04-17

Windows驱动开发入门

包含了几个入门开发的文档 hello world 环境配置 USB Wince

2009-03-05

ril.dll (radio interface layer dll)

windows mobile 中的ril.dll

2008-10-17

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除