本篇文章是對java物件複製進行了詳細的分析介紹,需要的朋友參考下
java本身提供了物件複製的能力,在java.lang.Object類別中有clone方法,此方法是protected方法,在子類別需要重寫此方法並宣告為public類型,而且還需實作Cloneable介面才能提供物件複製的能力,clone()是一個native方法,native方法的效率一般來說都是遠高於java中的非native方法,對性能比較關心的話首先考慮這種方式,這種複製在網上有很多例子就不多寫了;在這要用的另一種方式——通過java的反射機制複製對象,這種方式效率可能會比clone()低,而且不支援深度複製以及複製集合類型,但通用性會提高很多,下邊是進行複製的程式碼:
程式碼如下:
private <T> T getBean(T TargetBean, T SourceBean) { if (TargetBean== null) return null; Field[] tFields = TargetBean.getClass().getDeclaredFields(); Field[] sFields = SourceBean.getClass().getDeclaredFields(); try { for (Field field : tFields ) { String fieldName = field.getName(); if (fieldName.equals("serialVersionUID")) continue; if (field.getType() == Map.class) continue; if (field.getType() == Set.class) continue; if (field.getType() == List.class) continue; for (Field sField : sFields) { if(!sField .getName().equals(fieldName)){ continue; } Class type = field.getType(); String setName = getSetMethodName(fieldName); Method tMethod = TargetBean.getClass().getMethod(setName, new Class[]{type}); String getName = getGetMethodName(fieldName); Method sMethod = SourceBean.getClass().getMethod(getName, null); Object setterValue = voMethod.invoke(SourceBean, null); tMethod.invoke(TargetBean, new Object[]{setterValue}); } } } catch (Exception e) { throw new Exception("设置参数信息发生异常", e); } return TargetBean;}
此方法接收兩個參數,一個是複製的來源物件-要複製的對象,一個是複製的目標物件-物件副本,當然這個方法也可以在兩個不同物件間使用,這時候只要目標物件和物件具有一個或多個相同類型及名稱的屬性,那麼就會把來源物件的屬性值賦給目標物件的屬性。
以上是針對java物件複製的實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!