2022年7月29日
摘要: 1 package array; 2 3 public class ArrayDemo05 { 4 public static void main(String[] args) { 5 //[4][2] 6 /* 7 1,2 array[0] 8 2,3 array[1] 9 3,4 array[2 阅读全文
posted @ 2022-07-29 17:16 一枚努力学习的小白 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1 package array; 2 3 import java.util.Arrays; 4 5 public class ArrayDemo06 { 6 public static void main(String[] args) { 7 int[] a = {1,2,3,4,9090,3123 阅读全文
posted @ 2022-07-29 17:16 一枚努力学习的小白 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1 package array; 2 3 public class ArrayDemo02 { 4 public static void main(String[] args) { 5 //静态初始化:创建 + 赋值 6 int[] a = {1, 2, 3, 4, 5, 6}; 7 System. 阅读全文
posted @ 2022-07-29 17:15 一枚努力学习的小白 阅读(15) 评论(0) 推荐(1) 编辑
摘要: 1 // for (int i = 0; i <= a.length; i++) { //ArrayIndexOutOfBoundsException: 6 2 // System.out.println(a[i]); 3 // } 阅读全文
posted @ 2022-07-29 17:15 一枚努力学习的小白 阅读(17) 评论(0) 推荐(0) 编辑
  2022年7月23日
摘要: 1 package method; 2 3 public class Demo05 { 4 public static void main(String[] args) { 5 Demo05 demo05 = new Demo05(); 6 demo05.test();//StackOverflow 阅读全文
posted @ 2022-07-23 09:00 一枚努力学习的小白 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 数组:一个类型所有数字的集合。 数组的下标从0开始。10个数字,最大下标是9。 阅读全文
posted @ 2022-07-23 09:00 一枚努力学习的小白 阅读(116) 评论(0) 推荐(1) 编辑
摘要: 1 package array; 2 3 public class ArrayDemo01 { 4 //变量的类型 变量的名字 = 变量的值 5 //数组类型 6 public static void main(String[] args) { 7 int[] nums;//1.声明一个数组 8 n 阅读全文
posted @ 2022-07-23 09:00 一枚努力学习的小白 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1 package method; 2 3 public class Demo03 { 4 public static void main(String[] args) { 5 //args.length数组长度 6 for (int i = 0; i < args.length; i++) { 7 阅读全文
posted @ 2022-07-23 08:59 一枚努力学习的小白 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1 package method; 2 3 public class Demo04 { 4 public static void main(String[] args) { 5 Demo04 demo04 = new Demo04(); 6 demo04.test(1,2,3,4,5,6,7); 7 阅读全文
posted @ 2022-07-23 08:59 一枚努力学习的小白 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1 package method; 2 3 public class Demo01 { 4 //main方法 5 public static void main(String[] args) { 6 int sum = add(1,2); 7 System.out.println(sum); 8 t 阅读全文
posted @ 2022-07-23 08:58 一枚努力学习的小白 阅读(23) 评论(0) 推荐(0) 编辑