可可西

10 2010 档案

bind1st/bind2nd
摘要:1. bind1st/bind2ndbind1st: 绑定器binder通过把二元函数对象的第一个实参绑定到一个特殊的值上将其转换成一元函数对象bind2nd:绑定器binder通过把二元函数对象的第二个实参绑定到一个特殊的值上将其转换成一元函数对象例如:[代码]11 // 以下函数调用等价于调用kPrint(1,2)12 (std::bind2nd(std::ptr_fun(kPrint), 2... 阅读全文

posted @ 2010-10-22 12:04 可可西 阅读(777) 评论(0) 推荐(0) 编辑

GDI+编程入门(C++)
摘要:使用C++进行GDI+编程,首先要看系统中是否已经安装好了GDI+,目前大部分XP(SP3)中已安装好了GDI+【在system32中包含Gdiplus.dll文件】。开发环境为:Windows XP(SP3)+ VS2008(1)使用GdiPlus a.包含头文件#include <Gdiplus.h> using namespace Gdiplus; b.链接导入库 #pragma... 阅读全文

posted @ 2010-10-08 11:15 可可西 阅读(16355) 评论(0) 推荐(3) 编辑

导航