📄 bank.idl
字号:
#ifndef BANK_IDL
#define BANK_IDL
interface BankAccount {
//验证帐号
boolean log(in string id);
//验证密码
boolean authentificate(in string password);
//查询帐号中有多少存款
double requery();
boolean withdraw(in short nMoney);
//向帐号中存钱
boolean deposit(in short nMoney);
//修改密码
boolean alterPAW(in string strPAW);
//结束操作
boolean leave();
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -