首页 > 代码库 > 字典的异常
字典的异常
package zuizhong; public class Dict { DicItem[]dict=new DicItem[5]; class DicItem{ String en; String ch; public DicItem(String en, String ch) { super(); this.en = en; this.ch = ch; } } public Dict(){ dict[0]=new DicItem("book", "图书"); dict[1]=new DicItem("a", "一个"); dict[2]=new DicItem("she", "她"); dict[3]=new DicItem("he", "他"); dict[4]=new DicItem("hello", "你好"); } public String trans(String en) throws Exception{ for(DicItem e:dict){ if(en.equals(e.en)){ return e.ch; } } throw new Exception("这个单词不存在"); } }
package zuizhong; public class TestDic { public static void main(String[] args) { Dict d=new Dict(); try { String cn=d.trans("d"); System.out.println(cn); } catch (Exception e) { System.out.println("此单词不存在,请重新输入"); } } }
字典的异常
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。