编辑
2023-11-17
学习记录
00
请注意,本文编写于 503 天前,最后修改于 503 天前,其中某些信息可能已经过时。

目录

前提
基础获取
结合工作

前提

工作中很多时候需要从Class类中获取属性的值,下面会基础获取,以及结合工作内容

基础获取

java
public class Main { public static void main(String[] args) { Person person = new Person("张三", 25); try { Field nameField = Person.class.getDeclaredField("name"); Field ageField = Person.class.getDeclaredField("age"); // 设置访问权限,如果属性是私有的 nameField.setAccessible(true); ageField.setAccessible(true); // 获取属性值 String name = (String) nameField.get(person); int age = (int) ageField.get(person); System.out.println("姓名:" + name); System.out.println("年龄:" + age); } catch (NoSuchFieldException | IllegalAccessException e) { e.printStackTrace(); } } } class Person { private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age; } }

结合工作

写一个通用方法从list中获取想要内容

java
public <T> List<PatientRequest> getPatientStatusByList(List<T> list,Class<T> clazz) throws NoSuchFieldException, IllegalAccessException { if (CollUtil.isEmpty(list)) { return null; } List<PatientRequest> patients= new ArrayList<>(); for (T t:list){ PatientRequest patient=new PatientRequest(); // 设置访问权限,如果属性是私有的 Field patientId=clazz.getDeclaredField("patientId"); Field visitNo=clazz.getDeclaredField("visitNo"); // 设置访问权限,如果属性是私有的 patientId.setAccessible(true); visitNo.setAccessible(true); patient.setPatientId((String) patientId.get(t)); patient.setVisitNo((String) visitNo.get(t)); patients.add(patient); } if (CollUtil.isEmpty(patients)){ return null; } return patients; }

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!