自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (57)
  • 收藏
  • 关注

原创 #pragma pack 用法详解

pack 为 struct, union 和 class 等的成员对齐指定字节边界. 与编译选项(属性 -> 配置属性 -> C/C++ ->代码生成 -> 结构成员对齐)的 /Zp 开关不同, 它不针对整个项目, 而仅针对模块, 比如一个编译单元.  1. #pragma pack(show)     以警告信息的形式显示当前字节对齐的值. 2. #pragma pack(n)     将当前字

2009-12-29 01:42:00 1897

原创 按 F1 让 VS 帮助文档在外部窗口打开

同时安装 Visual Studio 2005 和 Visual Studio 2008, 均打完 SP1 补丁, 且通过 Microsoft Update 更新后, 在 VS2008 的代码中按F1获取帮助时, 帮助文档在编辑窗新开的 Tab 中打开. 不习惯这种方式, 喜欢在外部窗口打开, 比较灵活.  解决办法:  "VS2008 -> 选项 -> 环境 -> 帮助 -> 常

2009-12-28 10:00:00 2151

原创 #pragma push_macro("MACRO_NAME") 与 #pragma pop_macro("MACRO_NAME") 用法详解

1. 解释     (1) #pragma push_macro("MACRO_NAME") 是把当前与宏 MACRO_NAME 相关联的字符串值保存到栈中;     (2) #pragma pop_macro("MACRO_NAME") 是把栈中之前保存的与宏 MACRO_NAME 相关联的字符串值重新关联到宏 MACRO_NAME 上.     2. 说明     (1) 必须先用 push_

2009-12-28 02:06:00 5089

转载 一牛人对攻读计算机研究生的看法

  就我自己的理解,谈谈我对读研和软件学院的看法,不妥之处一笑了之即可。    如果你有实际开发工作经验,感觉自己的水平和实力进入了一个高原期,迫切需要从理论上提高,那么计算机学院是唯一选择。因为计算机学院才能让你在理论上更上一层楼。软件学院从教学计划上就没有把你往这方面带。当然能不能更上一层楼最终还是完全取决于你自己。需要特别说明的是,工作经验并不一定等于开发经验,我见过很多工作2-3年的人,但

2009-12-15 19:19:00 1051

原创 VC获取系统时间、程序运行时间

1. time_t time(time_t* timer); 功能: 该函数根据系统时钟, 返回自UTC时间1970.1.1.00:00:00以来的秒数, 或者-1表示错误;   参数: timer指向存储时间的指针. 如果为空, 不存储返回值. 如, 可这么使用: time_t ltime = time(NULL); 说明: VC2005中, time是对_time64的封装,

2009-12-15 09:41:00 3682

原创 C++ 异常说明/规范

1. 概念  异常说明/规范(exception specification)指定, 如果函数抛出异常, 被抛出的异常将是包含在该说明中的一种, 或者是从列出的异常中派生的类型.  2. 定义 异常说明跟在函数形参表之后. 一个异常说明在关键字throw之后跟着一个(可能为空的)由圆括号括起来的异常类型列表. 如: void foo(int) throw (std::l

2009-12-08 15:22:00 1943

原创 获取字符串长度

字符串的长度通常是指字符串中包含字符的数目,但有时需要的是字符串所占字节的数目。常见的获取字符串长度的方法如下:sizeof:获取字符数组的字节数(包括结束符0);对于ANSI字符串和UNICODE字符串,形式如下:    sizeof(cs) / sizeof(char)    sizeof(ws) / sizeof(wchar_t)对于MBCS无效。strlen() / wcs

2009-12-08 09:00:00 2182

原创 字符与编码

摘自:白乔, 左飞. 把脉VC++. 2009年7月. P176, P183~187.  1. 概念多字节字符集:MBCS,Multi-Bytes Charecter Set,是一种不同长度混排的编码方法。这种编码被称为GB2312,与ASCII码兼容。如:"中文ABC"所占的字节数是 2*2+3 = 7。 宽字节字符:使用UNICODE编码进行存放的字符。2. 转换

2009-12-07 21:35:00 846

原创 VS2008 IDE中一些概念

1. 项目 项目是构成某个程序的全部组件的容器,该程序可能是控制台程序、基于窗口的程序或某种别的程序。程序通常由一个或多个包含用户代码的源文件,可能还要加上其他包含辅助数据的文件组成。某个项目的所有文件都存储在相应的项目文件夹中,关于该项目的详细信息存储在一个扩展名为.vcproj的XML文件中,该文件同样存储在相应的项目文件夹中。项目文件夹还包括其他文件夹,它们用来存储编译及连接项目时所

2009-12-04 11:28:00 1493 1

Ghost安装器 v1.3.4.3

Ghost安装器 1.3.4.3.zip

2011-05-25

TortoiseSVN-1.6.15.21042-x64-svn-1.6.16.msi

TortoiseSVN-1.6.15.21042-x64-svn-1.6.16.msi.7z

2011-05-25

TortoiseSVN-1.6.15.21042-win32-svn-1.6.16

TortoiseSVN-1.6.15.21042-win32-svn-1.6.16.msi.7z

2011-05-25

Galcott.Super.Text.Search.v3.13-BEAN

Super Text Search is a utility which enables you to quickly search files for text. In plain ASCII text files it also allows you to replace text. You can search anything from a single file to an entire drive for any text you need to find. Both plain text files (program source code, batch files, HTML files, etc.) and binary files (word processing and spreadsheet documents, PDF files, databases, even executable programs) can be searched, as can files archived inside ZIP, CAB or RAR files. In addition to simple searches for words or phrases, the program allows you to use regular expressions (as found in Grep utilities, which will be familiar to the more technical among you) to perform more advanced searches including wild cards and various types of pattern matching. After performing a search, files containing the search text can be viewed, edited or opened in their associated applications. Search results can also be printed or exported.

2011-05-24

XYplorer 9.90.1000

XYplorer is a multi-tabbed dual pane file manager for Windows. Supported Operating Systems: Windows 7, 2008, Vista, XP, 2003, 2000, NT, Me, 98. Both 32-bit and 64-bit versions, where applicable, are supported.

2011-05-24

Doxygen 1.7.4 Linux

Doxygen 1.7.4 Linux Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.

2011-05-24

Doxygen 1.7.4 Windows

Doxygen 1.7.4 Windows Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.

2011-05-24

GNU Emacs 23.3 Documentation

1. An Introduction to Programming in Emacs Lisp (Third Edition) 2. GNU Emacs manual 3. GNU Emacs Lisp Reference Manual

2011-05-24

GNU Emacs 23.3 (Part 3/3)

GNU Emacs 23.3 (Part 3/3) GNU Emacs is an extensible, customizable text editor—and more. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp programming language with extensions to support text editing.

2011-05-24

GNU Emacs 23.3 (Part 2/3)

GNU Emacs 23.3 (Part 2/3) GNU Emacs is an extensible, customizable text editor—and more. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp programming language with extensions to support text editing.

2011-05-24

GNU Emacs 23.3 (Part 1/3)

GNU Emacs 23.3 (Part 1/3) GNU Emacs is an extensible, customizable text editor—and more. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp programming language with extensions to support text editing.

2011-05-24

Sweetscape.Software.010.Editor.v3.1.3-CRD

Sweetscape.Software.010.Editor.v3.1.3-CRD 据说是最棒的二进制编辑工具

2011-05-24

Vim 7.3 (gvim73_46)

Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor. Users of Vim 5 and 6 should consider upgrading to Vim 7. The main advantages of Vim 6 compared to Vim 5 can be found on this page.

2011-05-24

Google Chrome 11.0.696.68 离线安装包 Part-2/2

Google Chrome 11.0.696.68 离线安装包 Part-2/2

2011-05-24

Google Chrome 11.0.696.68 离线安装包 Part-1/2

Google Chrome 11.0.696.68 离线安装包 Part-1/2

2011-05-24

HashTab v4.0.0.1 Setup

Hash值校验工具, Windows Shell扩展.

2011-05-24

Firefox 4.0.1 中文版

火狐浏览器 Firefox 4.0.1 中文版

2011-05-24

Firefox 4.0.1 英文版

火狐浏览器 Firefox 4.0.1 英文版

2011-05-24

DAEMON Tools Lite v4.40.2 (with SPTD 1.76)

DAEMON Tools Lite v4.40.2 (with SPTD 1.76) File Name:DTLite4402-0131.exe Size:11,193,664 bytes Date:January 20, 2011 OS:Windows XP/Vista/7 MD5:3cad7a0a3d5c110a6e70f3d64a32a44f

2011-05-24

QQ拼音输入法4.2(1073) Part-2/2

QQ拼音输入法4.2(1073) 兼容Windows7/Vista(32/64位系统) 2011年4月27日(25.1MB)

2011-05-24

QQ拼音输入法4.2(1073) Part-1/2

QQ拼音输入法4.2(1073) 兼容Windows7/Vista(32/64位系统) 2011年4月27日(25.1MB)

2011-05-24

谷歌拼音输入法x64 2.4.15.88

本2.4.15.88 2011/05/24 修正了在网页游戏和部分客户端游戏中的兼容性问题 修正了字典更新在某些情况下提示确认对话框的问题

2011-05-24

谷歌拼音输入法 2.4.15.88

本2.4.15.88 2011/05/24 修正了在网页游戏和部分客户端游戏中的兼容性问题 修正了字典更新在某些情况下提示确认对话框的问题

2011-05-24

WinRAR 4.0 中英文版 & 烈火版 Key & Keygen

WinRAR 4.0 中英文版 & 烈火版 Key & Keygen

2011-05-24

SysinternalsSuite (May 18, 2011)

Sysinternals Suite By Mark Russinovich Updated: May 18, 2011

2011-05-24

Whole.Tomato.Visual.Assist.X.for.Visual.Studio.6.0-2010.v10.6.1845.0.CracKed-LCG

Whole.Tomato.Visual.Assist.X.for.Visual.Studio.6.0-2010.v10.6.1845.0.CracKed-LCG

2011-05-24

Foxmail 6.5 Build 026

Foxmail_6.5_Build_026

2011-05-24

Notepad++ 5.9

Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License. Based on the powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment. You're encouraged to translate Notepad++ into your native tongue if there's not already a translation present in the Binary Translations page. And if you want, help translating Notepad++ official site into your native tongue would be greatly appreciated.

2011-05-24

7Zip 9.20 Final

7Zip 9.20 Final : 免费开源压缩工具, 很好用.

2010-12-14

Notepad++ v5.8.4

Notepad++ v5.8.4 new features and fixed bugs (from v5.8.3): Fix memory leak problem while switching tab. Fix User Defined Language dialog docking problem under Windows 7. Fix backwards search with Asian codepage problem. Add a new capacity in context menu: the menu item and folder item can be renamed (and in whichever language). All the supported encoding charsets can be set as default in "New Document Settings". Remove Calltip restriction from plugins side. Add "-alwaysOnTop" command line argument. Fix icon display glitch in shell extension context menu.

2010-11-17

AsEclipse V1.8

Support for VS2005,VS2008,VS2010 (en/chs edition) AsEclipse is an add-in for MS Visual Studio, which enables you to use some convenient Eclipse editing functions in MS Visual Studio with almost the same shortcut keys. No matter whether you are familiar with Eclipse, AsEclipse will be helpful in coding with VS.

2010-11-17

EXIT 与 GOTO :EOF 在批处理中的区别

EXIT 与 GOTO :EOF 在批处理中的区别

2010-10-01

Dependency Walker 2.2

Dependency Walker 2.2 可执行文件分析工具

2010-08-11

Ghost安装器 V1.2.3.27

Ghost安装器 V1.2.3.27.rar 简便已用的ghost工具

2010-08-01

SoftMaker.Software.TextMaker.Viewer.v2010.5.19.585.Multilingual.WinAll.Cracked-CRD

支持.doc, .odt, .tmd, .rtf, .txt等文档格式的免费的文档阅读器。对Microsoft Word, OpenDocument, Openoffice.org, TextMaker等文档编辑软件都有较好地支持。

2010-08-01

谷歌拼音输入法 v2.3.13.82 x86 版

谷歌拼音输入法 v2.3.13.82 x86 版 GooglePinyinInstaller.v2.3.13.82.x86.rar

2010-07-31

谷歌拼音输入法 v2.3.13.82 x64 版

谷歌拼音输入法 v2.3.13.82 x64 版 GooglePinyinInstaller.v2.3.13.82.x64.rar

2010-07-31

【压缩软件】7-Zip 4.65

很好用的压缩工具软件,免费。v4.65 是目前最新的稳定版。

2010-07-26

[压缩工具]7zip v9.15

免费的压缩工具,很好用。虽然一直在beta!

2010-07-26

[20100726]网页资料

20100726搜集的网页资料,因公司无法上传,借此暂时备份。

2010-07-26

空空如也

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

TA关注的人

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