摘要: 1:新建 ctrl + n // 新建包、类等文件 2:格式化代码 ctrl+shift+f // 将选中的代码块进行格式化 3:导入包 ctrl+shift+o 4:注释 单行注释 ctrl+/, 多行注释 ctrl+shift+/,ctrl+shift+\ 5:代码上下移动 选中代码 alt + 阅读全文
posted @ 2020-05-28 23:16 ヤBig、Bossづ 阅读(130) 评论(0) 推荐(0) 编辑
摘要: import java.util.Arrays; import java.util.Random; public class ArraysDemo { public static void main(String[] args) { int[] arr = new int[10]; //将数组元素都 阅读全文
posted @ 2020-05-28 18:22 ヤBig、Bossづ 阅读(157) 评论(0) 推荐(0) 编辑