Java Collections copy()方法与示例

集合类的copy()方法 (Collections Class copy() method)

  • copy() method is available in java.util package.

    copy()方法在java.util包中可用。

  • copy() method is used to copy all the elements from List the src_list (source list) and place all the copied elements into List dst_list (destination list).

    copy()方法用于从src_list列表(源列表)中复制所有元素,并将所有复制的元素放入dst_list列表(目标列表)中。

  • copy() method is a static method, so it is accessible with the class name and if we try to access the method with the class object then we will not get an error.

    copy()方法是一个静态方法,因此可以使用类名进行访问,如果尝试使用类对象访问该方法,则不会收到错误。

  • copy() method may throw an exception at the time of copying elements from one list to another.

    将元素从一个列表复制到另一个列表时, copy()方法可能会引发异常。

    • IndexOutOfBoundsException: This exception may throw when the given parameter dst_list size is lesser than the src_list.
    • IndexOutOfBoundsException :当给定参数dst_list的大小小于src_list时,可能引发此异常。
    • UnsupportedOperationException: This exception may throw when the given parameter dst_list un-support set operation.
    • UnsupportedOperationException :如果给定参数dst_list不支持set操作,则可能引发此异常。

Syntax:

句法:

    public static void copy(List dst_list, List src_list);

Parameter(s):

参数:

  • List dst_list – represents the destination list.

    列表dst_list –表示目标列表。

  • List src_list – represents the source list.

    列表src_list –表示源列表。

Return value:

返回值:

The return type of this method is void, it returns nothing.

此方法的返回类型为void ,不返回任何内容。

Example:

例:

// Java program is to demonstrate the example of
// void copy() method of Collections 
import java.util.*;
public class Copy {
public static void main(String args[]) {
// Instantiate two LinkedList object
List < Integer > src_l = new LinkedList < Integer > ();
List < Integer > dest_l = new LinkedList < Integer > ();
// By using add() method is to add
// few elements in src_l
src_l.add(10);
src_l.add(20);
src_l.add(30);
src_l.add(40);
// By using add() method is to add
// few elements in dest_l
dest_l.add(60);
dest_l.add(70);
dest_l.add(80);
dest_l.add(90);
// Display LinkedList
System.out.println("src_l: " + src_l);
System.out.println("dest_l: " + dest_l);
// By using copy() method is to
// copy the elements of src_l into a dest_l
Collections.copy(dest_l, src_l);
System.out.println();
// Display Copied LinkedList
System.out.println("Collections.copy(dest_l, src_l): " + dest_l);
}
}

Output

输出量

src_l: [10, 20, 30, 40]
dest_l: [60, 70, 80, 90]Collections.copy(dest_l, src_l): [10, 20, 30, 40]

翻译自: https://www.includehelp.com/java/collections-copy-method-with-example.aspx

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

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

相关文章

c#如何实现叫号操作_微信预约排队叫号系统操作指南

“微信排队预约"功能是阿拉善盟税务局为进一步优化营商环境&#xff0c;深化“放管服”改革&#xff0c;提高纳税便利度&#xff0c;更好地服务于阿拉善经济社会发展而开发的一项便民措施。通过“微信排队预约”功能&#xff0c;纳税人可以随时随地通过微信获取办税大厅的…

计算机用户越权操作的原因,“三员系统”中常见的越权问题

原标题&#xff1a;“三员系统”中常见的越权问题一、越权访问越权访问(Broken Access Control&#xff0c;简称BAC)是Web应用程序中一种常见的漏洞&#xff0c;由于其存在范围广、危害大&#xff0c;被OWASP列为Web应用十大安全隐患的第二名。1.1越权访问的产生比如&#xff0…

富士施乐2022网络扫描设置_富士施乐(FUJI XEROX)全系列复印机产品介绍

富士施乐(FUJI XEROX)复印机全系列详解富士施乐复印机是中小型办公环境的理想机型。所有的都拥有高效生产力和强大的稳定性&#xff0c;无论您需要亮丽色彩、黑白打印、亦或是足以应对复杂文档工作流的强大功能&#xff0c;总有一款适合您。DocuCentre S2110NDocuCentre S2110N…

ruby hash方法_Ruby中带有示例的Hash.rassoc(obj)方法

ruby hash方法Hash.rassoc(obj)方法 (Hash.rassoc(obj) Method) In this article, we will study about Hash.rassoc(obj) Method. The working of the method can’t be assumed because of it’s quite a different name. Let us read its definition and understand its imp…

JavaMail(四):接收邮件

2019独角兽企业重金招聘Python工程师标准>>> 接收邮件采用POP3协议进行接收&#xff0c;简单的一个接收邮件案例如下 /*** 接收邮件*/ public static void receive() throws Exception { // 准备连接服务器的会话信息 Properties props new Properties(); props.se…

html流动海报css,海报网css代码怎样把模块移到右面?最好把代码直接给我!嘿嘿。...

匿名用户13级2010-09-15 回答CSS是Cascading style Sheets的简称&#xff0c;中文译作“层叠样式表单”. 实际上它是一组样式。你可能对CSS这个名词比较陌生&#xff0c;实际上无论你用Internet Explorer还是Netscape Navigator在网上冲浪&#xff0c;几乎随时都在与CSS打交道&…

奥鹏东北大学作业答案计算机网络,东北大学17秋学期《计算机网络》在线作业1参考答案...

一、单选题:【15道,总分:75分】东北大学1.IP地址0.0.0.0表示( )。 (满分:5)A. 广播B. 有限广播C. 自环地址D. 本机2.IP协议中&#xff0c;如果首部不含选项字段&#xff0c;则首部长度字段的值应为( )。 (满分:5)A. 0B. 5C. 10D. 203.滑动窗口的作用是…

append生成新变量的时候,没有如预期(It's a feature,not a bug?)

这是我在写一个项目中&#xff0c;遇到的一个golang的feature&#xff0c;如代码所示&#xff0c;我在for循环里&#xff0c;每次用append生成一个新的数组&#xff0c;&#xff08;当然我以前一直以为可以这样&#xff0c;直到我在stackoverflow上发现不能。&#xff09;然后将…

jqgrid本地数据例子_办公系统私有云公有云和本地化部署,你选哪个?

随着互联网和云计算技术的发展&#xff0c;我们常常会听到&#xff1a;私有云、公有云和本地化部署&#xff0c;它们分别代表什么意思&#xff1f;无论是国企、民企还是外企&#xff0c;只要有数据&#xff0c;就要思考&#xff1a;到底将数据储存在哪里&#xff1f;选择轻流进…

计算机基础应用的培养活动记录,小学少年宫计算机兴趣小组活动记录表

小学少年宫计算机兴趣小组活动记录表 小学少年宫计算机兴趣小组活动记录表 活动名称&#xff1a;计算机 指导教师&#xff1a; ⅩⅩ 学生姓名 活动地点 计算机教室 活 动 过 程 活动1&#xff0e;认识计算机 ①师&#xff1a;“请同学们按下方盒子上面像大钮扣一样的按钮&#…

C ++ STL中的set :: lower_bound()函数

C STL set :: lower_bound()函数 (C STL set::lower_bound() function) set::lower_bound() function is a predefined function, it is used to get the lower bound of any element in a set. set :: lower_bound()函数是预定义的函数&#xff0c;用于获取集合中任何元素的下…

flume入门

# example.conf: A single-node Flume configuration# Name the components on this agent #给那三个组件取个名字 a1.sources r1 a1.sinks k1 a1.channels c1# Describe/configure the source #类型, 从网络端口接收数据,在本机启动, 所以localhost, typespoolDir采集目录源…

原生js设置div隐藏或者显示_JavaScript动画方式控制div元素的隐藏和显示

jQuery实现此功能相对比较简单&#xff0c;具体参阅点击按钮动画方式隐藏和显示div一章节。结合CSS3实现此功能也非常便利和适合&#xff0c;具体参阅JavaScript与CSS3动画方式改变元素尺寸一章节。原生JavaScript实现稍显麻烦&#xff0c;下面就通过代码实例介绍一下如何实现此…

python线程任务run_Python线程类| 带有示例的run()方法

python线程任务runPython Thread.run()方法 (Python Thread.run() Method) Thread.run() method is an inbuilt method of the Thread class of the threading module in Python. This method is used to represent a threads activity. It calls the method expressed as the …

哪个计算机无法做到双屏显示,怎么启用双屏显示设置【图文介绍】

随着生活质量的提升&#xff0c;人们对于便利的要求越来越高&#xff0c;电脑的双屏显示成为现在用户越来越关注的对象之一。比如炒股操作中&#xff0c;人们既要关注大盘的走动趋势&#xff0c;又要关注特定股票的走势&#xff0c;在普通的屏幕上就需要不断地切换页面&#xf…

1.django 开发环境搭建

2019独角兽企业重金招聘Python工程师标准>>> 本教程使用的开发环境 本教程写作时开发环境的系统平台为 Windows 10 &#xff08;64 位&#xff09;&#xff0c;Python 版本为 3.5.2 &#xff08;64 位&#xff09;&#xff0c;Django 版本为 1.10.6。 建议尽可能地与…

改jpg_|我来改第04期|—人物海报设计

【我来改第04期】人物海报文案内容-Ad copyhttps://pan.baidu.com/s/16pz9_rcLXTGZ3xzKFjKN9g 密码: r57t设计要求-Requirement尺寸&#xff1a;1080(高)*650(宽)像素&#xff0c;大小不大于5m设计要求&#xff1a;以目前的蓝色为主要颜色(R:47,G:87,B:130)&#xff0c;画面体…

Java即时类| plus()方法与示例

即时类plus()方法 (Instant Class plus() method) Syntax: 句法&#xff1a; public Instant plus(TemporalAmount t_amt);public Instant plus(long amt, TemporalUnit t_unit);plus() method is available in java.time package. plus()方法在java.time包中可用。 plus(Temp…

计算机领域中dns是什么意思,dns错误是什么意思?dns错误要如何解决?

随着网络的普及&#xff0c;电脑已经成为我们生活中必不可少的物品&#xff0c;它可以帮助我们工作和学习以及娱乐。不过电脑在使用的过程中&#xff0c;常常会出现一些问题&#xff0c;小编觉得最常见也最让人心生烦躁的就是输入网址打开之后出现网页打不开&#xff0c;提示dn…

Launch Instruments

Launch Instruments 该仪器应用在Xcode应用程序&#xff0c;所以推出是在Xcode的最直接的方式。你也可以启动它间接地通过码头&#xff0c;启动&#xff0c;或命令行。The Instruments app lives inside the Xcode app, so the most direct way to launch it is from within Xc…