⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 structmembers.ice

📁 ICE-3.2 一个开源的中间件
💻 ICE
字号:
// **********************************************************************//// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.//// This copy of Ice is licensed to you under the terms described in the// ICE_LICENSE file included in this distribution.//// **********************************************************************module Test{struct s1               // Illegal empty struct{};struct s2{    long l;             // One member, OK};struct s4{    [ "Hi" ] long l;    // One member with metadata, OK};struct s5               // Two members, OK{    long l;    byte b;};struct s6{                       // Two members with metadata, OK    [ "Hi" ]    long l;                byte b;};struct s7               // Two members with metadata, OK{    [ "Hi" ]    long l;    [ "there" ] byte b;};struct s8{    [ "hi" ] long ;     // Missing data member name};struct s9{    [ "there" ] long    // Missing data member name};struct s10{    long ;              // Missing data member name};struct s11{    long                // Missing data member name};};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -