摘要: package Demo.oop.APP; //一个项目通常只用一个启动器,也就是只有一个main方法 public class Application { public static void main(String[] args) { //类:抽象的需要实例化 //类实例化后会返回一个自己的对象 阅读全文
posted @ 2022-05-16 23:05 回忆也交给时间 阅读(13) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop; public class demo01 { public static void main(String[] args) { student.say();//静态方法 student student=new student();//非静态方法,当使用new方法时, 阅读全文
posted @ 2022-05-16 22:38 回忆也交给时间 阅读(24) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop; public class demo01 { public static void main(String[] args) { student.say();//静态方法 student student=new student();//非静态方法,当使用new方法时, 阅读全文
posted @ 2022-05-16 22:15 回忆也交给时间 阅读(17) 评论(0) 推荐(0) 编辑
摘要: package array; public class demo06 { public static void main(String[] args) { //创建一个二维数组 11*11 int[][] array1 = new int[11][11]; //存放数据(稀疏数组的非零数据) arr 阅读全文
posted @ 2022-05-16 15:14 回忆也交给时间 阅读(6) 评论(0) 推荐(0) 编辑