摘要: package com.Lol;public class Hero { String name; String skill_q; String skill_w; String skill_e; String skill_r; public Hero(String name){ this.name = 阅读全文
posted @ 2022-05-13 10:01 小松2739 阅读(51) 评论(0) 推荐(0) 编辑
摘要: package com.API;public class TestBao { public static void main(String[] args) {// int i = 10;// System.out.println(i + 10);// //基本数据类没有继承object面向对象的特征 阅读全文
posted @ 2022-05-13 09:59 小松2739 阅读(33) 评论(0) 推荐(0) 编辑
摘要: package com.API;import java.util.Calendar;import java.util.Date;public class TestTime { public static void main(String[] args) { //Date日期 //Calendar 日 阅读全文
posted @ 2022-05-13 09:59 小松2739 阅读(111) 评论(0) 推荐(0) 编辑
摘要: package com.API;import java.util.Scanner;//Math数学类public class TestMath { public static void main(String[] args) { //JDK看API文档 https://docs.oracle.com 阅读全文
posted @ 2022-05-13 09:58 小松2739 阅读(19) 评论(0) 推荐(0) 编辑
摘要: package com.shuzu;public class demo04 { public static void main(String[] args) { int[] arrays = {1,3,4,5,66,2};// for (int array : arrays) {// System. 阅读全文
posted @ 2022-05-08 15:37 小松2739 阅读(12) 评论(0) 推荐(0) 编辑
摘要: package com.shuzu;public class demo02 { public static void main(String[] args) { //静态初始化 int[] a = {1,3,4,5}; System.out.println(a[1]); //动态初始化 int[] 阅读全文
posted @ 2022-05-08 15:18 小松2739 阅读(13) 评论(0) 推荐(0) 编辑
摘要: package com.method;import java.util.Scanner;public class demo04 { //计算器 public static void main(String[] args) { Scanner scanner = new Scanner(System. 阅读全文
posted @ 2022-05-08 13:59 小松2739 阅读(19) 评论(0) 推荐(0) 编辑