- 论坛徽章:
- 0
|
有如下代码段:
- /**
- Encapsulates literal text.
- This is always constructed using an _LIT macro.
- This class is build independent; i.e. for a non-Unicode build, an 8-bit build
- variant is generated; for a Unicode build, a 16 bit build variant is generated.
- The class has no explicit constructors. See the _LIT macro definition.
- */
- template <int S>
- class TLitC {
- public:
- // 一些成员函数,但没有构造函数
- public:
- int iTypeLength;
- char iBuf[S];
- };
复制代码
使用时:
- #define _LIT(name,s) const static TLitC<sizeof(s)> name={sizeof(s)-1,s} // ???
复制代码
不大明白的是:
在创建TLitC对象时, 为什么可以那样初始化对象?它是根据什么原理啊?并且如果TLitC类定义了构造函数则这种方式失败。谢谢。
[ 本帖最后由 disheng727 于 2009-8-9 16:38 编辑 ] |
|