
C++
theForger
Israel.liu.theForger@gmail.com
展开
-
WTL(Windows Template Library)
Windows模板库(WTL)是一个c++库用于开发Windows应用程序和UI组件 推荐文章:http://www.cnblogs.com/cutepig/archive/2009/02/21/1395332.html原创 2016-03-18 10:55:10 · 816 阅读 · 0 评论 -
图形编程
Windows GDI, GDI++, OpenGl, DirectX Direct2D 画图 #include <windows.h>#include <d2d1.h>#pragma comment(lib, "d2d1")#include "basewin.h"template <class T> void SafeRelease(T **ppT){ if (*ppT)原创 2016-03-23 11:12:45 · 560 阅读 · 0 评论 -
qsort_s 使用实例
// crt_qsort_s.cpp// compile with: /EHsc /MT#include <stdlib.h>#include <stdio.h>#include <search.h>#include <process.h>#include <locale.h>#include <locale>#include <windows.h>using namespace原创 2016-04-11 10:24:58 · 2385 阅读 · 1 评论 -
C Function
C 函数实现原创 2016-03-18 11:27:32 · 399 阅读 · 0 评论 -
如何:在各种字符串类型之间进行转换
Converting from char *原创 2016-03-12 15:49:11 · 633 阅读 · 0 评论 -
Windows API
Win32 API 是Windows 操作系统提供的应用程序接口函数,它基本上涵盖了应用程序编程中涉及的各个方面原创 2016-03-18 11:26:02 · 377 阅读 · 0 评论 -
MFC 对话框控件和变量类型
You can use the Add Member Variable Wizard to add a member variable to a dialog box control created using MFC.The type of control for which you add the member variable determines the options that appea原创 2016-03-14 15:53:15 · 1885 阅读 · 0 评论 -
线程池
创建太多线程,将会浪费一定的资源,有些线程未被充分使用。 销毁太多线程,将导致之后浪费时间再次创建它们。 创建线程太慢,将会导致长时间的等待,性能变差。 销毁线程太慢,导致其它线程资源饥饿。原创 2016-03-13 14:28:00 · 420 阅读 · 0 评论 -
内存池
内存池:预先规划一定数量的内存区块,使得整个程序可以在运行期规划 (allocate)、使用 (access)、归还 (free) 内存区块。原创 2016-03-13 14:23:31 · 369 阅读 · 0 评论 -
MFC(Microsoft Foundation Classes)
Microsoft 基础类通过 Win32 提供面向对象的精简包装,以在 C++ 实现 GUI 应用程序的开速开发原创 2016-03-18 10:58:38 · 1614 阅读 · 0 评论 -
C++/CX(Visual C++ component extensions)
Visual C++ 组件扩展 (C++/CX) 是 C++ 语言的一组扩展,通过这些扩展,可用一种尽可能接近现代 C++ 的惯用语法创建 Windows 应用和 Windows 运行时 组件。 使用 C++/CX 通过本机代码编写 Windows 应用和组件,而本机代码可与 Visual C#、Visual Basic、JavaScript 和其他支持 Windows 运行时 的语言轻松交互。原创 2016-03-18 11:02:37 · 854 阅读 · 0 评论 -
ATL( Active Template Library)
活动模板库 (ATL) 是一个包装库,它简化了 COM 开发,广泛用于创建 ActiveX 控件。原创 2016-03-18 10:49:08 · 1206 阅读 · 0 评论 -
Standard for Programming Language C++
标准C++ 1. General 2. Lexical conventions原创 2016-03-18 11:05:25 · 564 阅读 · 0 评论 -
Windows Internals
Windows 核心编程原创 2016-03-18 11:31:31 · 347 阅读 · 0 评论 -
boost
便携式c++源代码库。 参考链接:http://www.boost.org/原创 2016-03-18 11:15:47 · 323 阅读 · 0 评论 -
STL(Standard Template Library)
C++标准模板库原创 2016-03-18 11:13:28 · 431 阅读 · 0 评论 -
C++著名类库
、http://www.open-open.com/solution/view/1323401558374转载 2016-09-09 22:41:37 · 538 阅读 · 0 评论