摘要: package b; public interface ZuoBiao { double zuobiao(); } package b; public class Point implements ZuoBiao { double x; double y; double z; public doub 阅读全文
posted @ 2016-05-26 20:01 凌零聆 阅读(2117) 评论(0) 推荐(0) 编辑
摘要: package b; public interface CanFly { public void fly(); } package b; public class FeiJi implements CanFly { @Override public void fly() { System.out.p 阅读全文
posted @ 2016-05-26 19:17 凌零聆 阅读(5225) 评论(0) 推荐(0) 编辑
摘要: package b; public interface Computer { int computer(int n,int m); } package b; public class Jia implements Computer { @Override public int computer(in 阅读全文
posted @ 2016-05-26 18:56 凌零聆 阅读(963) 评论(0) 推荐(0) 编辑
摘要: package a; public interface CanSwim { void swim(); } package a; public interface CanFly { void fly(); } package a; public abstract class ActionCharact 阅读全文
posted @ 2016-05-26 17:44 凌零聆 阅读(198) 评论(0) 推荐(0) 编辑