摘要: ①下载 jdk Oracle官网下载 jdk https://www.oracle.com/java/technologies/downloads/ 下载第三个 tar.gz压缩包 2022/09/13 ②解压 jdk 打开shell 进入 jdk所在目录 ls 和 pwd 辅助查看 准备一个文件夹 阅读全文
posted @ 2022-09-14 09:20 craftsuntopo 阅读(270) 评论(0) 推荐(0)
摘要: 冒泡排序 public static int[] sort(int[] array){ int temp = 0; for (int i = 0; i < array.length-1; i++) { for (int j = 0; j < array.length-1-i; j++) { if ( 阅读全文
posted @ 2021-03-14 10:59 craftsuntopo 阅读(52) 评论(0) 推荐(0)
摘要: 数据类型 字节 阅读全文
posted @ 2021-02-08 06:12 craftsuntopo 阅读(51) 评论(0) 推荐(0)
摘要: 打开Dos窗口 win键+R输入cmd 资源管理器文件夹的地址栏全选输入cmd 按住shift键鼠标右键选中文件夹,选择“在此处打开Powershell窗口” Dos窗口中常用命令 切换盘符 切换到E盘-->E: 查看当前目录下的所有文件 dir 切换目录 cd 返回上级目录 cd.. 打开计算器 阅读全文
posted @ 2021-02-04 08:13 craftsuntopo 阅读(105) 评论(0) 推荐(0)