1、char[] 转换为 LPWSTR解决方案: 思路一: 使用CA2W字符转换宏(ATL and MFC String Conversion Macros)。 根据MSDN描述,这个宏用于将ANSI转换为Wide Character(UNICODE) 代码如下: ...
分类:
其他好文 时间:
2014-12-06 16:35:00
阅读次数:
291
1. 让自己习惯C++
01. 视C++为一个语言联邦
请记住:
? C++高效编程守则视状况而变化,取决于你使用C++的哪一部分
02. 尽量以const,enum,inline,替换#define
请记住:
? 对于单纯变量,最好以const对象或enums替换#defines
? 对于形似函数的宏(macros),最好改用inline函数替换#defines
03. 尽可能使...
分类:
编程语言 时间:
2014-11-27 14:35:18
阅读次数:
211
pixel format definitions More...#include "libavutil/avconfig.h"#include "version.h"#include "old_pix_fmts.h"Go to the source code of this file.Macros#define AVPALETTE_SIZE 1024 #define AVPALETTE_COU...
分类:
其他好文 时间:
2014-11-25 16:31:36
阅读次数:
543
以下是蜂鸣器的电路图。
代码:蜂鸣器代码。
/*
*info:buzzer
*author:chenlu
*date:2014.11.20
*/
//input the head file so that the program can work normally
//iom16v---know the register
//macros---know the BIT(x)
#i...
分类:
其他好文 时间:
2014-11-20 12:04:44
阅读次数:
193
原论文链接失效,特在这里保存一份
http://www.apl.jhu.edu/~hall/Lisp-Notes/Macros.html
Lisp functions take Lisp values as input and return Lisp values. They are executed at run-time. Lisp macros take Lisp code as inp...
分类:
系统相关 时间:
2014-11-19 11:23:25
阅读次数:
224
原论文链接失效,特在这里保存一份
http://www.apl.jhu.edu/~hall/Lisp-Notes/Macros.html
Lisp functions take Lisp values as input and return Lisp values. They are executed at run-time. Lisp macros take Lisp code as inp...
分类:
系统相关 时间:
2014-11-19 01:21:25
阅读次数:
269
修改项目的Preprocessor Macros, 将Debug & Release 的CC_ENABLE_CHIPMUNK_INTEGRATION=1 改为CC_ENABLE_BOX2D_INTEGRATION=1检查是否启用Box2d引擎的方法#if CC_ENABLE_BOX2D_INTEGR...
分类:
其他好文 时间:
2014-11-08 16:35:30
阅读次数:
225
IntroductionThe limits.h header determines various properties of the various variable types. The macros defined in this header limits the values of va...
分类:
其他好文 时间:
2014-10-29 23:50:08
阅读次数:
260
Pre-defined C/C++ Compiler Macros详见:http://sourceforge.net/p/predef/wiki/Home/
分类:
其他好文 时间:
2014-09-30 13:55:49
阅读次数:
161
把枚举转化为相应的字符串
今天无意间就需要这样的一个功能,从枚举值得到对应的字符串表示,一个容易想到的方法就是再造个字符串数组,和ENUM对应起来,显然这个方法没有可扩展性;第二种方法在stackoverflow上看到的就是巧妙的利用 宏 来生成对应的字符串数组,感觉非常巧妙,易于扩展。下面是这两种方法的代码。
#include
#include
enum...
分类:
其他好文 时间:
2014-09-26 19:45:58
阅读次数:
219