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) 编辑

List实现类

摘要: List实现类 1.ArrayList类 (1)数组结构实现,查询快,增删慢。 (2)jdk1.2版本,运行效率快,线程不安全 2.Vector: (1)数组结构实现,查询快,增删慢: (2)jdk1.0版本,运行效率慢,线程安全。 3LinkList: (1)链表结构实现,增删快,查询慢 阅读全文

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

List使用2

摘要: List的使用2 package com.tiedandan.集合.List使用;​import java.util.ArrayList;import java.util.List;​public class ListUse1 { public static void main(String[] a 阅读全文

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

导航