免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2042 | 回复: 5
打印 上一主题 下一主题

c++类对象初始化问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-08-09 16:36 |只看该作者 |倒序浏览
有如下代码段:

  1. /**
  2. Encapsulates literal text.

  3. This is always constructed using an _LIT macro.

  4. This class is build independent; i.e. for a non-Unicode build, an 8-bit build
  5. variant is generated; for a Unicode build, a 16 bit build variant is generated.

  6. The class has no explicit constructors. See the _LIT macro definition.
  7. */
  8. template <int S>
  9. class TLitC {
  10. public:
  11.   // 一些成员函数,但没有构造函数

  12. public:
  13.     int    iTypeLength;
  14.     char iBuf[S];
  15. };
复制代码

使用时:

  1. #define _LIT(name,s) const static TLitC<sizeof(s)> name={sizeof(s)-1,s} // ???
复制代码

不大明白的是:
在创建TLitC对象时, 为什么可以那样初始化对象?它是根据什么原理啊?并且如果TLitC类定义了构造函数则这种方式失败。谢谢。

[ 本帖最后由 disheng727 于 2009-8-9 16:38 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2009-08-09 17:19 |只看该作者
不懂的问题再小也是个大问题。明白的请帮忙解答一下吧,谢谢。

论坛徽章:
1
午马
日期:2013-08-23 23:39:47
3 [报告]
发表于 2009-08-09 18:33 |只看该作者
symbian?

不是标准C++吧

论坛徽章:
0
4 [报告]
发表于 2009-08-09 18:44 |只看该作者

回复 #3 phy0077 的帖子

恩,是symbian中的。
但我在vs2008下用简单程序测试了一下, 也是没问题的。

论坛徽章:
0
5 [报告]
发表于 2009-08-09 19:29 |只看该作者

  1. class TLitC
  2. {
  3.     int    iTypeLength;
  4.     char iBuf[5];
  5. };

  6. TListC t = {sizeof("xujg"),"xujg"};
复制代码


  1. struct Foo
  2. {
  3.     int m;
  4.     int n;
  5. };

  6. Foo bar = {1,2};
复制代码

论坛徽章:
0
6 [报告]
发表于 2009-08-09 20:28 |只看该作者
This is always constructed using an _LIT macro.
因为写TLitC和_LIT的是一个人,如果以后添加了构造函数,他会改了.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP