确保继承树的所有级别都支持 Java Beans API。现在你可以像这样写一个特定级别的克隆器:
public <T> T specialClone( T obj, Class<T> type ) {
T result = type.newInstance();
Class<?> current = type;
while( current != null ) {
BeanInfo info = Introspector.getBeanInfo( current );
for( PropertyDescriptor pd: info.getPropertyDescriptors() ) {
Object value = pd.getReadMethod().invoke( obj );
pd.getWriteMethod().invoke( result, value );
}
current = current.getSuperClass();
}
return result;
}
请注意,您可能希望缓存读/写方法,因为方法调用是同步的。
当我做这样的事情时,我通常会检查一次 bean 并创建包装这两种方法的辅助对象,这样我就可以像这样工作:
for( Helper h : get( current ) ) {
h.copy( obj, result );
}
public Helper[] get( Class<?> type ) {
... look in cache. If nothing there, create helper using PropertyDescriptors.
}