新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   >>中国XML论坛<<     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> VoiceXML, CCXML, OpenVXI
    [返回] 中文XML论坛 - 专业的XML技术讨论区XML.ORG.CN讨论区 - 高级XML应用『 XML在语音技术中的应用 』 → 关于OPENVXI中VXIValue类 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 5322 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: 关于OPENVXI中VXIValue类 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     yuyuanb7 帅哥哟,离线,有人找我吗?
      
      
      等级:大一(猛啃高等数学)
      文章:17
      积分:134
      门派:XML.ORG.CN
      注册:2005/11/15

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给yuyuanb7发送一个短消息 把yuyuanb7加入好友 查看yuyuanb7的个人资料 搜索yuyuanb7在『 XML在语音技术中的应用 』 的所有贴子 引用回复这个贴子 回复这个贴子 查看yuyuanb7的博客楼主
    发贴心情 关于OPENVXI中VXIValue类

    OPENVXI中VXIvalue.h定义:
    #ifdef __cplusplus
    struct VXIValue;
    struct VXIBoolean;
    struct VXIInteger;
    struct VXIFloat;
    struct VXIString;
    struct VXIPtr;
    struct VXIContent;
    struct VXIMap;
    struct VXIVector;
    struct VXIDouble;
    struct VXIULong;
    struct VXILong;
      
    struct VXIMapIterator;
    #else

    typedef struct VXIValue   { void * dummy; } VXIValue;
    typedef struct VXIBoolean { void * dummy; } VXIBoolean;
    typedef struct VXIInteger { void * dummy; } VXIInteger;
    typedef struct VXIFloat   { void * dummy; } VXIFloat;
    typedef struct VXIString  { void * dummy; } VXIString;
    typedef struct VXIPtr     { void * dummy; } VXIPtr;
    typedef struct VXIContent { void * dummy; } VXIContent;
    typedef struct VXIMap     { void * dummy; } VXIMap;
    typedef struct VXIVector  { void * dummy; } VXIVector;
    typedef struct VXIDouble  { void * dummy; } VXIDouble;
    typedef struct VXIULong   { void * dummy; } VXIULong;
    typedef struct VXILong    { void * dummy; } VXILong;
    而在value.hpp中:
    class VXIValue;
    class VXIBoolean;
    class VXIInteger;
    class VXIFloat;
    class VXIPtr;
    class VXIString;
    class VXIContent;
    class VXIMap;
    class VXIVector;
    class VXIMapIterator;
    class VXIContentData;
    class VXIDouble;
    class VXIULong;
    class VXILong;

    为什么会有STRUCT定义又有CLASS定义


       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2007/8/13 11:47:00
     
     zhu_ruixian 帅哥哟,离线,有人找我吗?射手座1983-12-2
      
      
      威望:2
      等级:大二期末(Java考了96分!)
      文章:406
      积分:3471
      门派:W3CHINA.ORG
      注册:2006/3/30

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给zhu_ruixian发送一个短消息 把zhu_ruixian加入好友 查看zhu_ruixian的个人资料 搜索zhu_ruixian在『 XML在语音技术中的应用 』 的所有贴子 引用回复这个贴子 回复这个贴子 查看zhu_ruixian的博客2
    发贴心情 
    OPENVXI中VXIvalue.h定义
    /*
    * Define each type as an opaque structure to get full information hiding
    * while ensuring strong compiler type checks. The actual implementation
    * defines these structures however it wants.
    */

    #ifdef __cplusplus
    struct VXIValue;
    struct VXIBoolean;
    struct VXIInteger;
    struct VXIFloat;
    struct VXIString;
    struct VXIPtr;
    struct VXIContent;
    struct VXIMap;
    struct VXIVector;
    struct VXIDouble;
    struct VXIULong;
    struct VXILong;
      
    struct VXIMapIterator;
    #else

    typedef struct VXIValue   { void * dummy; } VXIValue;
    typedef struct VXIBoolean { void * dummy; } VXIBoolean;
    typedef struct VXIInteger { void * dummy; } VXIInteger;
    typedef struct VXIFloat   { void * dummy; } VXIFloat;
    typedef struct VXIString  { void * dummy; } VXIString;
    typedef struct VXIPtr     { void * dummy; } VXIPtr;
    typedef struct VXIContent { void * dummy; } VXIContent;
    typedef struct VXIMap     { void * dummy; } VXIMap;
    typedef struct VXIVector  { void * dummy; } VXIVector;
    typedef struct VXIDouble  { void * dummy; } VXIDouble;
    typedef struct VXIULong   { void * dummy; } VXIULong;
    typedef struct VXILong    { void * dummy; } VXILong;

    typedef struct VXIMapIterator  { void * dummy; } VXIMapIterator;
    #endif

    而在value.hpp中:
    // Forward declarations, required because we mask out the struct definitions
    // in VXIvalue.h with the define below

    class VXIValue;
    class VXIBoolean;
    class VXIInteger;
    class VXIFloat;
    class VXIPtr;
    class VXIString;
    class VXIContent;
    class VXIMap;
    class VXIVector;
    class VXIMapIterator;
    class VXIContentData;
    class VXIDouble;
    class VXIULong;
    class VXILong;

    你看一下黑体字部分  #ifdef __cplusplus 是判断编译器是C 还是C++编译器.

    ----------------------------------------------
    为什么总是索取的人多,奉献的人少...

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2007/8/14 23:11:00
     
     GoogleAdSense射手座1983-12-2
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 XML在语音技术中的应用 』 的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/12/27 14:25:22

    本主题贴数2,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    46.875ms