摘要: 包装类: 阅读全文
posted @ 2024-03-25 22:03 小彭先森 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-03-25 21:44 小彭先森 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 上限技术: 下限技术: 阅读全文
posted @ 2024-03-25 21:13 小彭先森 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.泛型: 定义类,接口,方法时,同时声明一个或多个类型的变量(如:<E>),称为泛型类,泛型接口,泛型方法,他们统称为泛型 2.自定义泛型类: 3.泛型接口: 阅读全文
posted @ 2024-03-25 20:56 小彭先森 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1.枚举:特殊的类 抽象枚举,枚举类实现抽象方法。 package com.itheima.枚举; public class test { public static void main(String[] args) { //目标:认识枚举 A a1=A.x; System.out.println( 阅读全文
posted @ 2024-03-25 20:16 小彭先森 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1.认识匿名内部类: package com.itheima.匿名内部类; public class test { public static void main(String[] args) { //把这个匿名内部类编译成一个子类,然后会立即创建一个子类对象出来 Animal A=new Anim 阅读全文
posted @ 2024-03-25 19:45 小彭先森 阅读(6) 评论(0) 推荐(0) 编辑