2022年5月18日

摘要: 对象:万物皆对象。 面向对象:关注的某个事物信息。 类:是对象的数据类型,具有相同属性和行为的一组对象的集合。 对象的属性:对象具有的各种特征 对象的行为:独享能够执行的操作 类和对象 的关系: 类 定义类 //默认值为null 和 0 public class Student { String n 阅读全文

posted @ 2022-05-18 18:23 LutixiaGit 阅读(22) 评论(0) 推荐(0) 编辑

摘要: import java.util.Scanner; public class Score { public static void main(String[] args) { System.out.println("请输入评委个数"); Scanner sc = new Scanner(System 阅读全文

posted @ 2022-05-18 17:06 LutixiaGit 阅读(52) 评论(0) 推荐(0) 编辑

摘要: public class Method { public static void main(String[] args) { int[] arr = {11,22,1,2,33,4}; System.out.println(getMax(arr)); } public static int getM 阅读全文

posted @ 2022-05-18 11:12 LutixiaGit 阅读(33) 评论(0) 推荐(0) 编辑