自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 const 变量的链接性

<br />《C++ Primer Plus(第五版)中文版》P277:<br />在 C++ (但不是在 C 语言)中,const 对默认存储类型稍有影响。默认情况下,全局变量的链接性为外部的,但 const 全局变量的链接性为内部的。也就是说,在 C++ 看来,全局 const 定义就像使用了 static 说明符一样。 <br /> <br />测试代码(VS2010 /W4 /WX):<br />// const_var_def.cpp extern const int const_var

2010-07-29 00:01:00 2524 5

原创 附件

<br />//

2010-07-20 18:55:00 569

原创 剪贴板

<br />// begin 20100720 //#include <iostream> ////#define MYMACRO ////int main()//{// int ia = 9; //// int* pint = &ia; // int* pint2 = const_cast<int*>(pint); // std::cout<< pint2 << std::endl; ////#ifdef MYMACRO_1 //

2010-07-20 18:50:00 1086 3

原创 if (false) 代码块中的语句会被编译

<br />测试代码:<br />#include <iostream> int main(){ bool bFlag = false; if (bFlag) { std::cout << "This statement will never be executed. " << std::endl; #pragma message("The if statements will be compiled, whether the expre

2010-07-14 10:59:00 2569 2

转载 指向类成员的指针(Pointers to Class Members)

<br />原文 http://old.blog.edu.cn/user2/wanglina/archives/2006/1241853.shtml <br /> 类成员的类型<br />指向成员函数的指针必须与向其赋值的函数类型匹配,不是两个而是三个方面都要匹配:1 .参数的类型和个数   2 .返回类型 3 .它所属的类类型<br />普通函数指针和成员函数指针:<br />函数指针存储函数的地址,可以被用来直接调用那个函数。成员函数指针首先必须被绑定在一个对象或者一个指针上,才能得到被调用对象的thi

2010-07-13 00:27:00 940 1

原创 有继承关系的构造函数和析构函数的执行次序

为了讨论方便, 这里假设继承层次只有两层, 即基类和派生类. <br />对于基类对象的创建和销毁, 与普通类对象的类似. <br />对于派生类对象: #1 创建时, 在进入派生类构造函数函数体前(即派生类构造函数函数体的左花括号前), 执行基类的构造函数, 然后执行派生类构造函数成员初始化列表中的成员初始化, 最后进入派生类构造函数函数体; #2 销毁时, 先进入派生类析构函数函数体, 待所有语句执行完即将退出时(即派生类析构函数函数体的右花括号前), 进入基类析构函数执行, 基类析构函数执行完后, 派

2010-07-12 22:54:00 251

转载 如何区分“动态库的导入库”与“静态库”

<br />原文 http://blog.sina.com.cn/s/blog_611b75a80100emow.html <br /> <br /> <br />通过命令:>lib /list Demo.lib <br />如果该 Demo.lib 是静态库,输出如下:>lib /list Demo.libMicrosoft (R) Library Manager Version 8.00.50727.42Copyright (C) Microsoft Corporation. All rights re

2010-07-11 19:14:00 2318 1

原创 用 comsupp.lib/comsuppd.lib 还是 comsuppw.lib/comsuppwd.lib

<br />曾经用过 _bstr_t 类,MSDN 提示包含的库为 comsuppw.lib 或 comsuppwd.lib。<br /> <br />最近看到了 comsupp.lib 和 comsuppd.lib,到底该用哪个呢?<br /> <br />从 MSDN 得知:<br />(1) 当指定了/Zc:wchar_t  时,应该使用comsuppw.lib/comsuppwd.lib;<br />(2) 当指定了 /Zc:wchar_t- 时,应该使用comsupp.lib/comsuppd.l

2010-07-11 18:30:00 5783 1

转载 VC项目配置基础

原文链接 http://blog.csdn.net/phunxm/archive/2009/12/26/5082488.aspx 一.预处理宏1. 通用宏VC6.0中:Project SettingàC/C++àPreprocessor definitionsVC2005中:项目属性à配置属性àC/C++à预处理器定义WIN32:指明是Window 32位系统的编译器,一般用作平台识别。_MBCS/_UNICODE:指明该工程使用的字符集(多字节字符集/UNICODE)。在VC6.0的“Project Se

2010-07-08 02:29:00 2296 1

原创 VS2008 中命令行参数的设置

<br />项目名称右键 -> 属性 -> 项目属性页 -> 配置属性 -> 调试 -> 命令参数:在这里设置即可。<br />注意问题: <br />(1) 这里隐含了第一个参数,即可执行文件路径(如,X:/Path1/Path2/Test.exe); <br />(2) 多个参数必须用空格分隔。一个空格和多个空格效果一样,编译器将其解释为一个空格;逗号和分号不能用来分隔各参数,如果写上,会被认为是参数的一部分; <br />(3) 如果参数中包含有空格,则这个参数应该用英文状态下的双引号括起来做为一个整

2010-07-06 01:34:00 12879 5

原创 .dll 的搜索顺序

《Windows 核心编程(第5版)》P522 19.2.3 运行可执行模块:由于导入段只包含 DLL 的名称,不包含 DLL 的路径,因此加载程序必须在用户的磁盘上搜索 DLL。下面是加载程序的搜索顺序:(1) 包含可执行文件的路径;(2) Windows 的系

2010-07-06 00:12:00 3196 6

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关注的人

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