Fork me on GitHub
摘要: 多态中如何使用子类特有方法class Cat extends Animal{ public void eat() { System.out.println("吃鱼"); } public void catchMouse() { System.out.println("抓老鼠"); }}class... 阅读全文
posted @ 2015-03-15 23:03 龙族小龙 阅读(118) 评论(0) 推荐(0) 编辑