亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java如何獲取object屬性值

小億
194
2023-11-20 20:46:54
欄目: 編程語言

在Java中,可以使用反射機制來獲取對象的屬性值。下面是一個簡單的示例代碼:

import java.lang.reflect.Field;

public class Main {
    public static void main(String[] args) throws NoSuchFieldException, IllegalAccessException {
        // 創建一個對象
        Person person = new Person("John", 25);
        
        // 獲取屬性值
        String name = (String) getValue(person, "name");
        int age = (int) getValue(person, "age");
        
        // 輸出屬性值
        System.out.println("Name: " + name);
        System.out.println("Age: " + age);
    }
    
    // 獲取對象的屬性值
    public static Object getValue(Object object, String fieldName) throws NoSuchFieldException, IllegalAccessException {
        // 獲取對象的Class對象
        Class<?> clazz = object.getClass();
        
        // 獲取屬性
        Field field = clazz.getDeclaredField(fieldName);
        
        // 設置屬性可訪問
        field.setAccessible(true);
        
        // 獲取屬性值
        return field.get(object);
    }
}

class Person {
    private String name;
    private int age;
    
    public Person(String name, int age) {
        this.name = name;
        this.age = age;
    }
    
    // getters and setters...
}

在上面的示例中,“Person"類有兩個私有屬性"name"和"age”。通過反射的方式,可以獲取和輸出這兩個屬性的值。

0
漳浦县| 新丰县| 灵宝市| 玉环县| 岱山县| 嘉峪关市| 天门市| 启东市| 页游| 宜丰县| 永昌县| 茶陵县| 碌曲县| 历史| 云和县| 高青县| 广南县| 沙湾县| 塔河县| 安徽省| 南城县| 分宜县| 平南县| 永城市| 岱山县| 土默特左旗| 麻阳| 丰原市| 达孜县| 汶川县| 高安市| 河津市| 镇平县| 孟村| 盘山县| 盐津县| 万荣县| 平度市| 平武县| 麻阳| 手游|