自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 后自增(减)的结果不是左值

<br />#include <cstdio> int main(){ int foo = 5; void* p = NULL; printf_s("Address of foo is 0x%p. /r/n", &foo); // 0x0012FF60 p = &(++foo); printf_s("Address of ++foo is 0x%p. /r/n", p); // 0x0012FF60 p =

2010-12-31 19:02:00 1073

原创 Objective-C 中方法的重载,覆盖和隐藏

<br />在C++中,类方法有重载(overload)、覆盖(override)和隐藏(hide)的概念(当然,函数也可重载。)。<br />C++的覆盖和隐藏是个非常容易混淆的概念,尤其隐藏。学到Objective-C,因为它与C++有相似的地方,所以对此也格外留心。<br />从下面代码测试结果可以看出,OC远没有C++那么“灵活”。具体结论输出信息一目了然。<br />/** * test_Hide.m */ #import <Foundation/Foundation.h>

2010-12-24 03:32:00 6386 1

转载 Designated Initializers

<br />6.26 Designated Initializers<br />Standard C90 requires the elements of an initializer to appear in a fixed order, the same as the order of the elements in the array or structure being initialized.<br />In ISO C99 you can give the elements in any ord

2010-12-19 21:26:00 1550 2

转载 Heap: Pleasures and Pains

<br />Murali R. Krishnan<br />Microsoft Corporation<br />February 1999<br />Summary: Discusses common heap performance problems and how to protect against them. (9 printed pages)Introduction<br />Are you a happy-go-lucky user of dynamically allocated C/C++

2010-12-16 21:13:00 1121

转载 Segment/Section/Virtual Memory/Page之间的区别

<br />对于 Segment, Section, Virtual Memory, Page 这些词我们肯定不会陌生. 但在阅读一些书籍和文章的时候, 不知是那些作者的缘故还是自己的原因, 我们不能正确区分他们之间的区别. 我不得不承认, 真要 100% 弄清楚这些概念并不是一件容易的事情, 因为它们涉及到很多不同方面的内容 (例如编译/连接, 汇编, 操作系统等) , 同时这些内容本身就不太容易掌握. 但是我想写这篇文章, 一方面是为了总结我对这些内容的分析和理解, 另一方面在以后的学习中我可以对这篇文

2010-12-16 13:21:00 3430 1

转载 HeapAlloc 和 GlobalAlloc 以及 VirtualAlloc 三者之间的关系

<br />该文章系转载, 出处不详, 仅具参考价值. <br /><br />VirtualAlloc 一次分配 1PAGE 以上的 RAM. 每次分配都是 PAGE 的整数倍. 你不会想为了分配 1 个 BYTE 的空间而浪费剩下的 4095 字节. OK, 你可以自己写算法, 多分配几 PAGE. 然后每次分配少量数据时就从那几 PAGE 中划分出来. KERNEL32 提供了一个解决办法, 用 HeapAlloc/GlobalAlloc 分配 RAM. 这样, KERNEL32 帮助完成分配动作,

2010-12-15 14:17:00 6962

转载 Page State

<br />The pages of a process's virtual address space can be in one of the following states.<br />1. Free<br />The page is neither committed nor reserved. The page is not accessible to the process. It is available to be reserved, committed, or simultaneousl

2010-12-15 13:46:00 925 1

转载 Allocating and Releasing Memory for a BSTR

<br /> <br />When you create BSTRs and pass them between COM objects, you must take care in treating the memory they use in order to avoid memory leaks. When a BSTR stays within an interface, you must free its memory when you are done with it. However, whe

2010-12-14 18:17:00 784

转载 Policies/Binary Compatibility Issues With C++

<br />Definition<br />A library is binary compatible, if a program linked dynamically to a former version of the library continues running with newer versions of the library without the need to recompile.<br />If a program needs to be recompiled to run wit

2010-12-05 22:57:00 865

转载 How To Create 32-bit Import Libraries Without .OBJs or Source

<br />There are two ways to create an import library given a .DLL:Create a .DEF file for use with the LIB /DEF: command.Stub out functions, and use the .OBJ files created to mimic the import/export relationships. Then use the LIB /DEF: command to create th

2010-12-01 19:11:00 796

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

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