getFieldとgetDeclaredFieldの違い

3852 ワード

クラスAとクラスBの2つのクラスがあり、この2つのクラスの属性の大部分は同じです.たとえば、MongoDBストレージを使用する場合、ClassA
商品情報であり、ClassBは在庫情報であり、ClassBの多くの属性はClassAと同じである(原因:MongoDB関連照会性能が急速に低下する).
この時点ですでにClassAタイプのインスタンスが作成されており、ClassBタイプのインスタンスを作成する必要があります.
次の2つの方法があります.
1、ClassBの各属性のsetメソッドを呼び出す.
2、反射設定による;具体的には以下の通りです.
a>ClassAのすべての属性名の取得
/**
	 *       
	 * @param instance
	 * @return
	 */
	public static String[] getAllTrributeNames(Object instance){
		Field[] fields = instance.getClass().getDeclaredFields();
		String[] attNames = new String[fields.length];
		for(int i  = 0; i < fields.length; i++){
			attNames[i] = fields[i].getName();
		}
		return attNames;
	}

b>ループ属性、ClassBに値を設定する
/**
	 *      
	 * @param instance
	 * @param name
	 * @param value
	 */
	public static void setAttribute(Object instance, String name, Object value){
		try {
			Field field = instance.getClass().getDeclaredField(name);
			field.setAccessible(true);
			field.set(instance, value);
		} catch (NoSuchFieldException e) {
			e.printStackTrace();
		} catch (SecurityException e) {
			e.printStackTrace();
		} catch (IllegalArgumentException e) {
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			e.printStackTrace();
		}
	}
	
	/**
	 *      
	 * @param instance
	 * @param name
	 * @return
	 */
	public static Object getAttribute(Object instance, String name){
		Object obj = null;
		Field field;
		try {
			field = instance.getClass().getDeclaredField(name);
			field.setAccessible(true);
			obj = field.get(instance);
		} catch (NoSuchFieldException e) {
			e.printStackTrace();
		} catch (SecurityException e) {
			e.printStackTrace();
		} catch (IllegalArgumentException e) {
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			e.printStackTrace();
		}
		return obj;
	}
UserBean bean2 = (UserBean) getInstance(UserBean.class);
		System.out.println(bean2.toString());
		String[] attNames = getAllTrributeNames(bean1);
		for(String att : attNames){
			Object value  = getAttribute(bean1, att);
			setAttribute(bean2, att, value);
		}

ただし、クラスのプロパティを取得するには、getFieldとgetDeclaredFieldの2つの方法があります.
JDKソースコードを見ると、getFieldはpublicの属性のみを取得し、getDeclaredFieldはプライベートの属性を取得していることがわかります.
両方のメソッドがプロパティを取得すると、searchFieldsメソッドが呼び出されます.getFieldの場合、privateGetDeclaredFieldsはfalseになりますが、getDeclaredFieldはtrueです.
    public Field getDeclaredField(String name)
        throws NoSuchFieldException, SecurityException {
        checkMemberAccess(Member.DECLARED, Reflection.getCallerClass(), true);
        Field field = searchFields(privateGetDeclaredFields(false), name);
        if (field == null) {
            throw new NoSuchFieldException(name);
        }
        return field;
    }
    public Field getField(String name)
        throws NoSuchFieldException, SecurityException {
        checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), true);
        Field field = getField0(name);
        if (field == null) {
            throw new NoSuchFieldException(name);
        }
        return field;
    }
 private Field getField0(String name) throws NoSuchFieldException {
        // Note: the intent is that the search algorithm this routine
        // uses be equivalent to the ordering imposed by
        // privateGetPublicFields(). It fetches only the declared
        // public fields for each class, however, to reduce the number
        // of Field objects which have to be created for the common
        // case where the field being requested is declared in the
        // class which is being queried.
        Field res;
        // Search declared public fields
        if ((res = searchFields(privateGetDeclaredFields(true), name)) != null) {
            return res;
        }