上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页

2021年11月19日

泛型集合

摘要: 泛型集合 package com.tiedandan.集合.泛型.泛型集合;//泛型集合/** * ArrayList类源码就是泛型类,在调用时可以指定对象的类型。 * 这样做的好处是可以强制一个集合只有一种类型的数据。 * 如果不用泛型强制,则集合中不同类型的数据会引发遍历错误 * */​impo 阅读全文

posted @ 2021-11-19 20:15 张铁蛋666 阅读(72) 评论(0) 推荐(0) 编辑

泛型方法

摘要: 泛型方法 泛型方法同样分为有返回值的泛型方法和无返回值的泛型方法。 GenericMehod类: package com.tiedandan.集合.泛型.泛型方法;​/** * 泛型方法 */public class GenericMethod { public <T> void show(T t) 阅读全文

posted @ 2021-11-19 18:00 张铁蛋666 阅读(101) 评论(0) 推荐(0) 编辑

泛型接口

摘要: 泛型接口 泛型接口定义: package com.tiedandan.集合.泛型.泛型接口;​/** * @张铁蛋 * * 泛型接口 * 语法:接口名<T> * 泛型接口不能创建泛型静态常量 */public interface GenericInterface<T> { String name = 阅读全文

posted @ 2021-11-19 17:40 张铁蛋666 阅读(407) 评论(0) 推荐(0) 编辑

泛型类

摘要: 泛型类 GenericClass: package com.tiedandan.集合.泛型;​/** * 泛型类 * 语法:类名<T> * @author zht * T是类型占位符,表示一种引用类型,如果编写多个用逗号隔开。 */public class GenericClass<T> { //使 阅读全文

posted @ 2021-11-19 11:23 张铁蛋666 阅读(24) 评论(0) 推荐(0) 编辑

泛型概述

摘要: 泛型概述 1.Java泛型(generic)是JDK1.5中引入的新特性,其本质是参数化类型,把类型作为参数传递 2.常见的形式有泛型类,泛型接口,泛型方法。 语法: <T,.....> T成为占位符,表示引用类型。 好处:提高代码重用性,防止类型转换异常,提高代码安全性。 阅读全文

posted @ 2021-11-19 10:17 张铁蛋666 阅读(33) 评论(0) 推荐(0) 编辑

ArryList类和ListedLink类区别

摘要: 阅读全文

posted @ 2021-11-19 10:06 张铁蛋666 阅读(12) 评论(0) 推荐(0) 编辑

LinkedListUse

摘要: LinkedList类 LinkedListUse类: package com.tiedandan.集合.LinkedList使用;​import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer;​import java.util.L 阅读全文

posted @ 2021-11-19 09:40 张铁蛋666 阅读(70) 评论(0) 推荐(0) 编辑

2021年11月18日

Vector类使用

摘要: Vector类使用 package com.tiedandan.集合.List使用.Vector使用;​import java.util.Enumeration;import java.util.Vector;​public class VectorUse { public static void 阅读全文

posted @ 2021-11-18 20:48 张铁蛋666 阅读(79) 评论(0) 推荐(0) 编辑

ArrayList类源码分析

摘要: ArrayList类源码分析 https://www.bilibili.com/video/BV16K4y1x7Gi?p=12 阅读全文

posted @ 2021-11-18 20:07 张铁蛋666 阅读(13) 评论(0) 推荐(0) 编辑

ArryList类使用

摘要: ArryList类使用 ArrayListUse类: package com.tiedandan.集合.List使用.List实现类;​import java.util.ArrayList;import java.util.Iterator;import java.util.ListIterator 阅读全文

posted @ 2021-11-18 19:39 张铁蛋666 阅读(95) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页

导航