2019年5月16日
摘要: package 接口运用;interface Person{ public void eat(); public void sleep(); public void play(); }class Student implements Person{ String StudentClass; publ 阅读全文
posted @ 2019-05-16 22:43 18软工五班罗小杨 阅读(94) 评论(1) 推荐(0) 编辑
摘要: package 多态类运用; abstract class MyShape{ public abstract void getArea(); public abstract void getLength(); } class Circla extends MyShape{ public static 阅读全文
posted @ 2019-05-16 01:40 18软工五班罗小杨 阅读(143) 评论(0) 推荐(0) 编辑