java collectiongroup 类_Java中的collection集合类型总结

java集合是java提供的工具包,包含了常用的数据结构:集合、链表、队列、栈、数组、映射等。java集合工具包位置是java.util.*

java集合主要可以划分为4个部分:list列表、set集合、map映射、工具类(iterator迭代器、enumeration枚举类、arrays和collections)。

java集合工具包框架如下图。

29fb836d3292d19d843ab701a042a105.png

说明:看上面的框架图,先抓住它的主干,即collection和map。

collection是一个接口,是高度抽象出来的集合,它包含了集合的基本操作和属性。

collection包含了list和set两大分支。

(01) list是一个有序的队列,每一个元素都有它的索引。第一个元素的索引值是0。

list的实现类有linkedlist, arraylist, vector, stack。

(02) set是一个不允许有重复元素的集合。

set的实现类有hastset和treeset。hashset依赖于hashmap,它实际上是通过hashmap实现的;treeset依赖于treemap,它实际上是通过treemap实现的。

map是一个映射接口,即key-value键值对。map中的每一个元素包含“一个key”和“key对应的value”。

abstractmap是个抽象类,它实现了map接口中的大部分api。而hashmap,treemap,weakhashmap都是继承于abstractmap。

hashtable虽然继承于dictionary,但它实现了map接口。

接下来,再看iterator。它是遍历集合的工具,即我们通常通过iterator迭代器来遍历集合。我们说collection依赖于iterator,是因为collection的实现类都要实现iterator()函数,返回一个iterator对象。

listiterator是专门为遍历list而存在的。

再看enumeration,它是jdk 1.0引入的抽象类。作用和iterator一样,也是遍历集合;但是enumeration的功能要比iterator少。在上面的框图中,enumeration只能在hashtable, vector, stack中使用。

最后,看arrays和collections。它们是操作数组、集合的两个工具类。

有了上面的整体框架之后,我们接下来对每个类分别进行分析。

collection架构下面,我们将对collection进行概括。下面先看看collection的一些框架类的关系图:

3290194857e6ed73cff978714d1f3aaf.png

collection是一个接口,它主要的两个分支是:list 和 set。

list和set都是接口,它们继承于collection。list是有序的队列,list中可以有重复的元素;而set是数学概念中的集合,set中没有重复元素!

list和set都有它们各自的实现类。

为了方便实现,集合中定义了abstractcollection抽象类,它实现了collection中的绝大部分函数;这样,在collection的实现类中,我们就可以通过继承abstractcollection省去重复编码。abstractlist和abstractset都继承于abstractcollection,具体的list实现类继承于abstractlist,而set的实现类则继承于abstractset。

另外,collection中有一个iterator()函数,它的作用是返回一个iterator接口。通常,我们通过iterator迭代器来遍历集合。listiterator是list接口所特有的,在list接口中,通过listiterator()返回一个listiterator对象。

接下来,我们看看各个接口和抽象类的介绍;然后,再对实现类进行详细的了解。

1. collection简介collection的定义如下:

public interface collection extends iterable {}

它是一个接口,是高度抽象出来的集合,它包含了集合的基本操作:添加、删除、清空、遍历(读取)、是否为空、获取大小、是否保护某元素等等。

collection接口的所有子类(直接子类和间接子类)都必须实现2种构造函数:不带参数的构造函数 和 参数为collection的构造函数。带参数的构造函数,可以用来转换collection的类型。

// collection的api

abstract boolean add(e object)

abstract boolean addall(collection extends e> collection)

abstract void clear()

abstract boolean contains(object object)

abstract boolean containsall(collection> collection)

abstract boolean equals(object object)

abstract int hashcode()

abstract boolean isempty()

abstract iterator iterator()

abstract boolean remove(object object)

abstract boolean removeall(collection> collection)

abstract boolean retainall(collection> collection)

abstract int size()

abstract t[] toarray(t[] array)

abstract object[] toarray()

2. list简介list的定义如下:

public interface list extends collection {}

list是一个继承于collection的接口,即list是集合中的一种。list是有序的队列,list中的每一个元素都有一个索引;第一个元素的索引值是0,往后的元素的索引值依次+1。和set不同,list中允许有重复的元素。 list的官方介绍如下:

a list is a collection which maintains an ordering for its elements. every element in the list has an index. each element can thus be accessed by its index, with the first index being zero. normally, lists allow duplicate elements, as compared to sets, where elements have to be unique.

关于api方面。既然list是继承于collection接口,它自然就包含了collection中的全部函数接口;由于list是有序队列,它也额外的有自己的api接口。主要有“添加、删除、获取、修改指定位置的元素”、“获取list中的子队列”等。

// collection的api

abstract boolean add(e object)

abstract boolean addall(collection extends e> collection)

abstract void clear()

abstract boolean contains(object object)

abstract boolean containsall(collection> collection)

abstract boolean equals(object object)

abstract int hashcode()

abstract boolean isempty()

abstract iterator iterator()

abstract boolean remove(object object)

abstract boolean removeall(collection> collection)

abstract boolean retainall(collection> collection)

abstract int size()

abstract t[] toarray(t[] array)

abstract object[] toarray()

// 相比与collection,list新增的api:

abstract void add(int location, e object)

abstract boolean addall(int location, collection extends e> collection)

abstract e get(int location)

abstract int indexof(object object)

abstract int lastindexof(object object)

abstract listiterator listiterator(int location)

abstract listiterator listiterator()

abstract e remove(int location)

abstract e set(int location, e object)

abstract list sublist(int start, int end)

3. set简介set的定义如下:

public interface set extends collection {}

set是一个继承于collection的接口,即set也是集合中的一种。set是没有重复元素的集合。

关于api方面。set的api和collection完全一样。

// set的api

abstract boolean add(e object)

abstract boolean addall(collection extends e> collection)

abstract void clear()

abstract boolean contains(object object)

abstract boolean containsall(collection> collection)

abstract boolean equals(object object)

abstract int hashcode()

abstract boolean isempty()

abstract iterator iterator()

abstract boolean remove(object object)

abstract boolean removeall(collection> collection)

abstract boolean retainall(collection> collection)

abstract int size()

abstract t[] toarray(t[] array)

abstract object[] toarray()

4. abstractcollectionabstractcollection的定义如下:

public abstract class abstractcollection implements collection {}

abstractcollection是一个抽象类,它实现了collection中除iterator()和size()之外的函数。

abstractcollection的主要作用:它实现了collection接口中的大部分函数。从而方便其它类实现collection,比如arraylist、linkedlist等,它们这些类想要实现collection接口,通过继承abstractcollection就已经实现了大部分的接口了。

5. abstractlistabstractlist的定义如下:

public abstract class abstractlist extends abstractcollection implements list {}

abstractlist是一个继承于abstractcollection,并且实现list接口的抽象类。它实现了list中除size()、get(int location)之外的函数。

abstractlist的主要作用:它实现了list接口中的大部分函数。从而方便其它类继承list。

另外,和abstractcollection相比,abstractlist抽象类中,实现了iterator()接口。

6. abstractset

abstractset的定义如下:

public abstract class abstractset extends abstractcollection implements set {}

abstractset是一个继承于abstractcollection,并且实现set接口的抽象类。由于set接口和collection接口中的api完全一样,set也就没有自己单独的api。和abstractcollection一样,它实现了list中除iterator()和size()之外的函数。

abstractset的主要作用:它实现了set接口中的大部分函数。从而方便其它类实现set接口。

7. iteratoriterator的定义如下:

public interface iterator {}

iterator是一个接口,它是集合的迭代器。集合可以通过iterator去遍历集合中的元素。iterator提供的api接口,包括:是否存在下一个元素、获取下一个元素、删除当前元素。

注意:iterator遍历collection时,是fail-fast机制的。即,当某一个线程a通过iterator去遍历某集合的过程中,若该集合的内容被其他线程所改变了;那么线程a访问集合时,就会抛出concurrentmodificationexception异常,产生fail-fast事件。关于fail-fast的详细内容,我们会在fail-fast总结后面专门进行说明。

// iterator的api

abstract boolean hasnext()

abstract e next()

abstract void remove()

8. listiteratorlistiterator的定义如下:

public interface listiterator extends iterator {}

listiterator是一个继承于iterator的接口,它是队列迭代器。专门用于便利list,能提供向前/向后遍历。相比于iterator,它新增了添加、是否存在上一个元素、获取上一个元素等等api接口。

// listiterator的api

// 继承于iterator的接口

abstract boolean hasnext()

abstract e next()

abstract void remove()

// 新增api接口

abstract void add(e object)

abstract boolean hasprevious()

abstract int nextindex()

abstract e previous()

abstract int previousindex()

abstract void set(e object)

希望与广大网友互动??

点此进行留言吧!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/528697.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python time localtimeq获取准确时间_python的内置模块time和datetime的方法详解以及使用(python内的time和datetime时间格式)...

time内置模块的方法1、time() 时间戳time() -> floating point number 浮点数Return the current time in seconds since the Epoch.Fractions of a second may be present if the system clock provides them.importtimeprint(time.time())C:\python35\python3.exe D:/pyp…

java权限控制最小访问原则_[Java教程]Java之路(五) 访问权限控制

[Java教程]Java之路(五) 访问权限控制0 2016-12-09 01:00:14在Java中,所有事物都具有某种形式的访问权限控制。访问权限的控制等级从最大到最小依次为:public,protected,包访问权限(无关键词)和private。public,protec…

java jndi tcp_spring配置下通过tomcat的jndi服务连接数据库

在开发OA系统因为采用了springhibernate架构,其中数据源很多,采用jdbc注入到spring中,结果时间长了,数据库容易断开,改成了jndi,jndi由spring去管理1、配置jndi文件文件位置%TOMCAT_HOME% \conf\Catalina\l…

php 下拉菜单 多个值,PHP,而foreach下拉菜单在所有下拉菜单中都具有相同的选定值...

3个带值的下拉菜单$options1 array( 1> Equals, ≠ Does not Equal, > Is greater than, ≥ Is greater than or equal to, < Is less than, ≤ Is less than or equal, ? Contains, ? Does not contain);$counter_maximum 3;while ($counter < $counter_maxim…

php 安装pdo odbc,PHP PDO ODBC连接

我们正在尝试通过PHP中的ODBC创建与SQL数据库的连接.这是我们目前的脚本&#xff1a;$cnx new PDO("odbc:Driver{EFR};Serverlocalhost;Port:7004;DatabaseEFR;UidLcLfVJFLTKTCEHRO;Pwd*********;");该驱动程序正在Qlikview中工作,该Qlikview也连接到此数据库.这个驱…

php 鼠标点击图片放大,css3如何实现鼠标放上图片放大?(附代码)

在css3的学习中&#xff0c;我们会经常做一些小的动画效果&#xff0c;这感觉非常有趣&#xff0c;所以今天的这篇文章将给大家来介绍关于css3实现图片放大的一个效果&#xff0c;有兴趣的小伙伴可以看一下。我们都知道css3中增加了一个transform属性应用于元素的2D或3D转换&am…

php 文件保存函数,php 写入和读取文件函数

//读取文件函数function readfromfile($file_name) {if (file_exists($file_name)) {$filenumfopen($file_name,"r");flock($filenum,lock_ex);$file_datafread($filenum, filesize($file_name));rewind($filenum); //osphp.com.cnfclose($filenum);return $file_dat…

java入职华为,通过这9个Java面试题,就可以入职华为啦

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼1&#xff0e;Java程序的种类有(BCD )A&#xff0e;类(Class) B&#xff0e;Applet C&#xff0e;Application D&#xff0e;Servlet2&#xff0e;下列说法正确的有( BCD)A&#xff0e; 环境变量可在编译source code时指定B&#x…

java hive查询,hive查询报错

我在每次添加where条件&#xff0c;或者使用子查询时&#xff0c;都会报这个错误。以下是报错详情java.lang.Exception: java.sql.SQLException: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.tez.TezTaskj…

java死锁怎么用jvm调试,线程死锁演示,线程锁演示,模拟JVM的线程次序调度

线程死锁演示&#xff0c;线程锁演示,模拟JVM的线程次序调度模拟JVM的线程次序调度注释A&#xff0c;不注释B&#xff0c;一般不死锁注释B&#xff0c;不注释A&#xff0c;死锁都不注释&#xff0c;随机package org.he.bin;/** * author BenHe * email qing878gmail.com * for …

脉位调制解调 matlab,通信原理与matlab仿真v2 第五章 DBPSK调制解调器(1)

在毕业设计的相关课程中&#xff0c;已经提及了这个DPSK调制方式。不过如果把它放在理论教学课程中来讲&#xff0c;就需要补充一些基本知识。当然还会给同学们看一下实际在卫星通信中使用的DBPSK程序。之前讲到了BPSK&#xff0c;回顾一下发送滤波器的知识吧。由于信号要在信道…

matlab scatter3函数,MATLAB3维散点图scatter3plote.pptx

MATLAB3维散点图scatter3plote第三章 Matlab图形绘制;主要内容;3.1 二维曲线的绘制;yrand(100,1);plot(y);x0:0.01*pi:2*pi;y[sin(x’),cos(x’)];plot([x’,x’],y);;Matlab绘图命令中的各种选项;2、特殊的二维图形函数;②极坐标系函数polar&#xff0c;调用形式为&#xff1a…

php首页遍历出商品详情页,ECSHOP首页/分类页/详情页各页面调用显示销量

1、在首页新品、热卖、精品等调用商品销售打开 includes/lib_goods.php在文件尾部?>前添加以下代码&#xff1a;function get_buy_sum($goods_id){$sql "select sum(goods_number) from " . $GLOBALS[ecs]->table(order_goods) . " AS g ,".$GLOBA…

matlab地址数据类型uns,使用matlab生成sine波mif文件

使用matlab生成sine波mif文件作者&#xff1a;lee神在使用altera 的FPGA中的rom過程中常常會使用到.mif文件或.hex文件。對於初學者&#xff0c;無論mif還是hex都是很令人疑惑的東西&#xff0c;這里就對mif文件的格式及其創建做一點簡單的說明。Mif是memory initialization fi…

matlab计算频域动态性能指标,基于MATLAB自动控制系统时域频域分析与仿真.doc

word文档 可编辑复制word文档 可编辑复制基于MATLAB的自动控制系统时域频域分析与仿真摘 要自动控制系统就是在无人直接操作或干预的条件下&#xff0c;通过控制装置使控制对象自动的按照给定的规律运行&#xff0c;使被控量按照给定的规律去变化的系统。在现代工业生产中&…

php历史上的今天源码,代码获取历史上的今天发生的事_基础知识

//http://history.sturgeon.mopaas.com //主页//http://history.sturgeon.mopaas.com/jsonp?callback? //jsonp接口//http://history.sturgeon.mopaas.com/jsonp //json接口//http://history.sturgeon.mopaas.com/jsonp/11 //历史上的1月1日//http://history.sturgeon.mopaas…

OpenAI科学家Hyung Won Chung演讲精华版

文章目录 第一个观点&#xff1a;涌现第二个观点&#xff1a;如何扩大规模1、标记化2、嵌入3、计算4、评估&#xff08;损失函数&#xff09;5、反向传播 最近从Google跳槽到OpenAI的AI科学家 Hyung Won Chung 比较拗口&#xff0c;我就简称尚哥了 他最近做了一个技术演讲 …

php如何实现购物时数量增减,1、vuex状态管理--购物车数量增减

GIF.gif1、购物车数量增减-import { mapState,mapMutations} from vuex //引入mapState、mapMutations映射函数export default{computed:{...mapState({changableNum:state > state.headerStatus.changableNum, //用模块headerStatus里的状态 changableNumdisabled:state &g…

oracle9i目录不停增长,丢失所有文件、拥有全备份,缺少后增加的文件

1.测试,移除当前所有文件从备份中恢复数据文件及控制文件(丢失后增加的文件)SQL> startup;ORACLE 例程已经启动。Total System Global Area 47259136 bytesFixed Size 454144 bytesVariable Size 29360128 bytesDatabase Buffers 16777216 bytesRedo Buffers 667648 bytes数…

oracle中存储过程和函数有什么区别,Oracle中存储过程和函数的区别

Oracle中存储过程和函数的区别存储过程和函数&#xff1a; www.2cto.com例子&#xff1a;[sql]//创建过程create or replace procedure add_emailinfo(namee email_info.fullname%type &#xff0c;address email_info.email_address%type )isbegininsert into email_info(ful…