摘要: import java.util.ArrayList;import java.util.List;/** * @auto dh * @create 2020-04-29-16:41 */public class Test019 { public static void main(String[] a 阅读全文
posted @ 2020-04-29 16:50 玄空2 阅读(173) 评论(0) 推荐(0) 编辑
摘要: /** * @auto dh * @create 2020-04-29-13:37 */public class Test014 { public static void main(String[] args) {// 获得jdk版本信息 String javaVersion=System.getP 阅读全文
posted @ 2020-04-29 13:48 玄空2 阅读(301) 评论(0) 推荐(0) 编辑
摘要: /** * @auto dh * @create 2020-04-29-9:46 */public class Test011 { public static void main(String[] args) { Float score1=23.4f; Float score2=23.3f; Sys 阅读全文
posted @ 2020-04-29 09:57 玄空2 阅读(414) 评论(0) 推荐(0) 编辑
摘要: /** * @auto dh * @create 2020-04-29-9:31 */interface Id010{ void run(); default void test(){ System.out.println("hello ,I am default method"); } stati 阅读全文
posted @ 2020-04-29 09:40 玄空2 阅读(248) 评论(0) 推荐(0) 编辑
摘要: /** * @auto dh * @create 2020-04-29-9:25 */abstract class Id009{ public Id009(){ } abstract void test();}public class Test009 { public static void mai 阅读全文
posted @ 2020-04-29 09:39 玄空2 阅读(174) 评论(0) 推荐(0) 编辑