集册 Java实例教程 返回具有给定名称的字段,该字段具有类层次结构中最低的类型。

返回具有给定名称的字段,该字段具有类层次结构中最低的类型。

欢马劈雪     最近更新时间:2020-01-02 10:19:05

378
返回具有给定名称的字段,该字段具有类层次结构中最低的类型。

/**

 * 

 * Funf: Open Sensing Framework

 * Copyright (C) 2010-2011 Nadav Aharony, Wei Pan, Alex Pentland.

 * Acknowledgments: Alan Gardner

 * Contact: nadav@media.mit.edu

 * 

 * This file is part of Funf.

 * 

 * Funf is free software: you can redistribute it and/or modify

 * it under the terms of the GNU Lesser General Public License as

 * published by the Free Software Foundation, either version 3 of

 * the License, or (at your option) any later version.

 * 

 * Funf is distributed in the hope that it will be useful, but

 * WITHOUT ANY WARRANTY; without even the implied warranty of

 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 * See the GNU Lesser General Public License for more details.

 * 

 * You should have received a copy of the GNU Lesser General Public

 * License along with Funf. If not, see <http://www.gnu.org/licenses/>.

 * 

 */

//package com.nowjava;


import java.lang.reflect.Field;
/** 
 来自 NowJava.com - 时代Java**/


public class Main {



    /**

     * Returns the field with the given name on the type lowest in the class hierarchy.

     * 

     * @param name The name of the field to get

     * @param type The class on which to search for the field.

     * @return The field with this name lowest in the hierarchy, otherwise null if the field does not exist in the class hierarchy.

     */

    public static Field getField(String name, Class<?> type) {

        for (Field field : type.getDeclaredFields()) {

            if (field.getName().equals(name)) {

          
展开阅读全文