上一页 1 2 3 4 5 6 7 8 ··· 29 下一页
摘要: package com.itheima.ArrayList; import java.util.ArrayList; public class Demo2 { public static void main(String[] args) { ArrayList<String> list=new Ar 阅读全文
posted @ 2024-03-06 22:13 小彭先森 阅读(13) 评论(0) 推荐(0) 编辑
摘要: ArrayList代表的是一种集合,一种容器,类似于数组。 容器主要操作:增删改查 package com.itheima.ArrayList; import java.util.ArrayList; import java.util.List; public class demo { public 阅读全文
posted @ 2024-03-06 21:26 小彭先森 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 包:分门别类程序的工具,类似文件夹 JAVA lang包下不需要导包的。 String: String 常用方法: String注意事项: 阅读全文
posted @ 2024-03-06 20:51 小彭先森 阅读(1) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.DuiXianganli; public class Movie { private int id; private String name; private double price; private double score; private String 阅读全文
posted @ 2024-03-04 22:01 小彭先森 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 封装: 封装设计对象规范:合理隐藏,合理暴露 即类中使用的public 与private关键字合理使用(只暴露对对象数据操作的方法,不暴露数据,故在对象中用private来封装数据,用public来封装方法) 将成员变量保护起来,将get与set方法暴露出来供相关操作。将需要外界访问的成员方法用pu 阅读全文
posted @ 2024-03-04 21:27 小彭先森 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-03-04 20:47 小彭先森 阅读(2) 评论(0) 推荐(0) 编辑
摘要: this;this就是一个变量,可以用在方法中,来拿到拿到当前对象 this的应用场景:this主要用来解决变量名称冲突问题的。 this真正解析: 阅读全文
posted @ 2024-03-04 20:31 小彭先森 阅读(2) 评论(0) 推荐(0) 编辑
摘要: \ \ 类与对象注意事项: package com.itheima.duyixiang; public class Test2 { public static void main(String[] args) { //1.类名建议用英文单词,首字母大写,满足驼峰模式,且有意义,如:Student / 阅读全文
posted @ 2024-03-04 20:12 小彭先森 阅读(8) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.duyixiang; import java.util.ArrayList; import java.util.List; public class Test { public static void main(String[] args) { Student 阅读全文
posted @ 2024-03-03 21:50 小彭先森 阅读(3) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.anli; import java.util.Random; import java.util.Scanner; public class Anli5 { public static void main(String[] args) { int[] user= 阅读全文
posted @ 2024-03-03 21:09 小彭先森 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 29 下一页