bank.idl

来自「java网络编程方面的源码,其中有一个整合的聊天室,比较不错,建议大家下载练习,」· IDL 代码 · 共 13 行

IDL
13
字号
module Bank {  exception InsufficientFunds {    float currentBalance;  };  interface Account {    attribute wstring name;    readonly attribute unsigned long ssn;    readonly attribute float balance;    void withdraw (in float amount) raises (InsufficientFunds);    void deposit (in float amount);  };};

⌨️ 快捷键说明

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