search
HomeJavajavaTutorialDetailed explanation of three methods of object attribute copying

Three methods of copying object properties:

1. BeanUtil.copyProperties and PropertyUtil.copyProperties two methods provided by Apache

BeanUtils.copyProperties("Converted class ", "Class to be converted"); //One more step of type conversion, even less efficient than PropertyUtils

 PropertyUtils.copyProperties( "Converted class", "Class to be converted");

## Tip: Pay later (pay later) Front: copy the latter to the front) will throw an exception

2. BeanUtil.copyProperties method provided by spring

BeanUtils.copyProperties(

"Class to be converted ", "Converted class");

Reverse the order of Apache parameters

3. The copy method provided by cglib

BeanCopier copy=BeanCopier.create("Class to be converted"

, "Converted class", false);

copy.copy(from, to,

null);##4. The copy method provided by spring

BeanCopier copy=BeanCopier. create("Class to be converted"

, "Converted class"

, false); copy.copy(from, to ,

null);

1 /**2  * Created by hunt on 2017/6/28.3  */4 @Data5 public class TestFrom {6     private String name;7 }
View Code

1 import lombok.Data;2 3 /**4  * Created by hunt on 2017/6/28.5  */6 @Data7 public class TestTo {8     private String name;9 }
View Code
BeanUtils efficiency test of the first Apache method:

 1 import org.apache.commons.beanutils.BeanUtils; 2  3 import java.lang.reflect.InvocationTargetException; 4  5 /** 6  * Created by hunt on 2017/6/28. 7  */ 8 public class TestDemo { 9     public static void main(String[] args) throws InvocationTargetException, IllegalAccessException {10         TestFrom testFrom = new TestFrom();11         testFrom.setName("hunt");12         TestTo testTo = new TestTo();13         long begin = System.currentTimeMillis();14         for (int i = 0; i <img class="code_img_opened lazy" src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/844fe4c2945742be3634bad9d562a21a-5.gif?x-oss-process=image/resize,p_40" id="code_img_opened_fb866e61-a94a-42a3-9260-e47506e17ff4" alt=""><div class="cnblogs_code_hide">View Code</div><span class="cnblogs_code_collapse"></span>

PropertyUtils efficiency test of the first Apache method:

 1 import org.apache.commons.beanutils.PropertyUtils; 2  3 import java.lang.reflect.InvocationTargetException; 4  5 /** 6  * Created by hunt on 2017/6/28. 7  */ 8 public class TestDemo { 9     public static void main(String[] args) throws IllegalAccessException, NoSuchMethodException, InvocationTargetException {10         TestFrom testFrom = new TestFrom();11         testFrom.setName("hunt");12         TestTo testTo = new TestTo();13         long begin = System.currentTimeMillis();14         for (int i = 0; i <img class="code_img_opened lazy" src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/ed3b8b12748b6202f22d909ee69fc9d4-8.gif?x-oss-process=image/resize,p_40" id="code_img_opened_52a00be7-7521-4c25-8a22-ffdd6cf7e62e" alt=""><div class="cnblogs_code_hide">View Code</div><span class="cnblogs_code_collapse"></span>

##The second Spring method of BeanUtils efficiency test:

 1 import org.springframework.beans.BeanUtils; 2  3 /** 4  * Created by hunt on 2017/6/28. 5  */ 6 public class TestDemo { 7     public static void main(String[] args) { 8         TestFrom testFrom = new TestFrom(); 9         testFrom.setName("hunt");10         TestTo testTo = new TestTo();11         long begin = System.currentTimeMillis();12         for (int i = 0; i <img class="code_img_closed lazy" src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/ed3b8b12748b6202f22d909ee69fc9d4-10.gif?x-oss-process=image/resize,p_40" id="code_img_closed_0920486e-e118-4826-a359-73cdf34706f6" alt=""><img class="code_img_opened lazy" src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/ed3b8b12748b6202f22d909ee69fc9d4-11.gif?x-oss-process=image/resize,p_40" id="code_img_opened_0920486e-e118-4826-a359-73cdf34706f6" alt="">View Code<div class="cnblogs_code_hide"></div><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/ed3b8b12748b6202f22d909ee69fc9d4-12.png?x-oss-process=image/resize,p_40" class="lazy" alt=""></p><p>第三种方式cglib的copy效率测试</p><div class="cnblogs_code">
<img class="code_img_closed lazy" src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/ed3b8b12748b6202f22d909ee69fc9d4-13.gif?x-oss-process=image/resize,p_40" id="code_img_closed_1e44eb70-fcb4-4fd7-9e6e-361937be1f4f" alt=""><img class="code_img_opened lazy" src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/a876777311618872c2968afb1fdb9f40-14.gif?x-oss-process=image/resize,p_40" id="code_img_opened_1e44eb70-fcb4-4fd7-9e6e-361937be1f4f" alt=""><div class="cnblogs_code_hide"><pre class="brush:php;toolbar:false"> 1 import net.sf.cglib.beans.BeanCopier; 2  3 /** 4  * Created by hunt on 2017/6/28. 5  */ 6 public class TestDemo { 7     public static void main(String[] args) { 8         TestFrom testFrom = new TestFrom(); 9         testFrom.setName("hunt");10         TestTo testTo = new TestTo();11         long begin = System.currentTimeMillis();12         for (int i = 0; i 
View Code

第四种方式Spring的copy效率测试

 1 import org.springframework.cglib.beans.BeanCopier; 2  3 /** 4  * Created by hunt on 2017/6/28. 5  */ 6 public class TestDemo { 7     public static void main(String[] args) { 8         TestFrom testFrom = new TestFrom(); 9         testFrom.setName("hunt");10         TestTo testTo = new TestTo();11         long begin = System.currentTimeMillis();12         for (int i = 0; i 
View Code

 

 

总结:这四种方式的效率是由低到高。(注意Apache的PropertyUtils不能进行类型转换的问题)

The above is the detailed content of Detailed explanation of three methods of object attribute copying. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
qq音乐歌词怎么复制 歌词复制的方法qq音乐歌词怎么复制 歌词复制的方法Mar 12, 2024 pm 08:22 PM

  我们用户们在使用这款平台的时候应该都能够了解到上面对于一些功能的多样性,我们知道一些歌曲的歌词都写的非常的不错。有时候甚至都会多听几遍,觉得其中的含义都是非常深刻的,所以我们想要去了解其中的胜意,就想要直接的复制下来当文案来使用,不过对于要使用的话,还是要学会如何去复制歌词才可以,这些操作方面我相信大家们应该都并不模式,但是在手机上面操作确实是有点难度,所以为了能够让大家们更好的了解的话,今日小编就来为你们好好的讲解上面的一些操作体验,如果你们也喜欢的话,就和小编一起来看看吧,不要错过了。 

复制的快捷键是什么复制的快捷键是什么Mar 10, 2023 pm 02:00 PM

复制的快捷键是“Ctrl+c”,与之相对应的粘贴键是“Ctrl+v”;在电脑中,使用鼠标拖拽选中文字,按住Ctrl,再点C键,即可完成复制;快捷键就是指通过某些特定的按键、按键顺序或按键组合来完成一个操作。

PS复制图层快捷键PS复制图层快捷键Feb 23, 2024 pm 02:34 PM

在PS复制图层快捷键中,我们可以知道使用PS的时候如果想要进行复制图层的操作,可以使用到快捷键【Ctrl+J】进行快速复制。这篇复制图层快捷键的介绍就能够告诉大家具体的操作方法,下面就是详细的内容,赶紧看看吧。PS复制图层快捷键答:【Ctrl+J】具体方法:1、在ps中打开图像,选中需要复制的图层。2、键盘同时按下【Ctrl+J】,即可完成对图层的复制。其他复制方式:1、打开图像后,按住图层,向下放【新建图层】图标移动。2、移动到该图标上后,松手。3、即可完成图层复制。

学习使用复制粘贴的快捷键学习使用复制粘贴的快捷键Jan 13, 2024 pm 12:27 PM

很多的用户们在使用电脑的时候,如果遇到一些需要复制粘贴的东西时,用鼠标复制非常麻烦,那么复制粘贴的快捷键需要如何使用呢,快来看看详细的教程吧~复制粘贴快捷键怎么用:1、复制键:Ctrl+C,选择需要复制的文字或图片,按下快捷键。2、粘贴键:Ctrl+V,在需要粘贴的位置上,直接按下快捷键就行了。

excel复制表格保留原格式怎么操作?excel复制表格保留原格式怎么操作?Mar 21, 2024 am 10:26 AM

我们经常会用Excel处理多个表格数据,而设定好的表格经过复制粘贴后,原有的格式又恢复默认了,还得需要我们重新设置。其实是有方法可以使Excel复制表格保留原格式的,下面小编就给大家讲解下具体的方法。一、Ctrl键拖拉复制操作步骤:使用快捷键【Ctrl+A】全选表格内容后,将鼠标光标移至表格边缘直到出现移动光标。按住【Ctrl】键,随后拖动表格到所需位置即可完成移动。需要注意的是,这种方法只适用于单个工作表,无法在不同工作表之间进行移动。二、选择性粘贴步骤:按【Ctrl+A】快捷键全选中表格,按

Vue 中如何实现拖拽元素的复制和移动?Vue 中如何实现拖拽元素的复制和移动?Jun 25, 2023 am 08:35 AM

Vue是一款流行的JavaScript框架,它提供了方便的拖拽功能,让我们可以轻易地实现元素的复制和移动。下面,我们就来看一下如何在Vue中实现拖拽元素的复制和移动。一、拖拽元素的基本实现在Vue中实现拖拽元素的复制和移动,首先需要实现元素的基本拖拽功能。具体实现方法如下:在模板中添加需要拖拽的元素:&lt;divclass=&quot;drag-elem

复制快捷键ctrl加什么复制快捷键ctrl加什么Mar 15, 2024 am 09:57 AM

在 Windows 系统中,复制的快捷键是 Ctrl+C;在苹果系统中,复制的快捷键是 Command+C;在 Linux 系统中,复制的快捷键是 Ctrl+Shift+C。了解这些快捷键可以提高用户的工作效率,方便地进行文本或文件复制操作。

剪切和复制有什么区别剪切和复制有什么区别Mar 22, 2024 pm 03:58 PM

1、剪切指的是将选定的内容从一个位置移动到另一个位置的操作。2、复制操作是在选定的内容上创建一个副本,并将这个副本保存在系统的剪贴板中,且原内容会保留在原来的位置上。3、如果用户想把内容移动到其他位置并删除原来的位置上的内容,就可以使用剪切操作。4、如果用户需要创建内容的副本,且在不影响原内容的情况下将其粘贴到其他地方,那就要使用复制操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use