摘要: 1、Linux目录介绍 /bin 命令目录 /sbin 系统管理员目录 /home 普通用户目录 /lib 动态链接共享库 /root 管理员目录 /dev 设备管理目录 /etc 设备配置目录 /opt 安装软件存放目录 /usr 软件目录 /slinux 安全子系统 /tmp 临时文件目录 /m 阅读全文
posted @ 2022-02-24 16:29 申辉 阅读(51) 评论(0) 推荐(0) 编辑
摘要: String[] str = new String[10]; 一维数组 String[][] str1 = new String[1][10]; 二维数组(长度为10) String[][] str2 = new String[2][10]; str2[0][i] = "aaa"; 给第一维度第i+ 阅读全文
posted @ 2022-02-24 16:20 申辉 阅读(6) 评论(0) 推荐(0) 编辑
摘要: list.stream().filter(s -> s.getName().equals("张三")).findFirst().orElse(Person.builder().age(12).build()).getAge(); 阅读全文
posted @ 2022-02-24 16:14 申辉 阅读(216) 评论(0) 推荐(0) 编辑