摘要: html标签 实操 阅读全文
posted @ 2024-09-26 22:40 liu某人 阅读(3) 评论(0) 推荐(0) 编辑
摘要: vscode快捷键 实操练习 阅读全文
posted @ 2024-09-25 22:26 liu某人 阅读(3) 评论(0) 推荐(0) 编辑
摘要: web学习 HTML5(暂无实操) 基本框架 阅读全文
posted @ 2024-09-24 21:59 liu某人 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ArrayList类 获取元素 阅读全文
posted @ 2024-09-20 22:37 liu某人 阅读(4) 评论(0) 推荐(0) 编辑
摘要: collection接口 list接口 ArrayList 添加元素 - 点击查看代码 import java.util.ArrayList; import java.util.List; public class testArr1 { public static void main(String[ 阅读全文
posted @ 2024-09-19 21:48 liu某人 阅读(8) 评论(0) 推荐(0) 编辑
摘要: file 递归 点击查看代码 import java.io.File; public class TFile4 { public static void main(String[] args) { File f=new File("d:/文件测试"); printFile(f,0); } stati 阅读全文
posted @ 2024-09-18 22:32 liu某人 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 递归 阅读全文
posted @ 2024-09-17 20:49 liu某人 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 枚举学习 import java.util.Random; //枚举练习,与类类似 /* * enum 美剧名{ * 枚举体 (常量列表) * } */ public class TestEnum1 { public static void main(String[] args) { System. 阅读全文
posted @ 2024-09-13 15:37 liu某人 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 复习java.util.Arrays的使用 点击查看代码 //测试java.util.Arrays import java.util.Arrays; public class javaarr { public static void main(String[] args) { //测试排序与二分法查 阅读全文
posted @ 2024-09-12 23:38 liu某人 阅读(3) 评论(0) 推荐(0) 编辑
摘要: file类综合应用 阅读全文
posted @ 2024-09-11 21:54 liu某人 阅读(2) 评论(0) 推荐(0) 编辑