gpt4 book ai didi

java - 通过 Java 中的反射访问私有(private)继承字段

转载 作者:IT老高 更新时间:2023-10-28 11:23:35 25 4
gpt4 key购买 nike

我找到了一种通过 class.getDeclaredFields(); 获取继承成员的方法并通过 class.getFields() 访问私有(private)成员但我正在寻找私有(private)继承字段。我怎样才能做到这一点?

最佳答案

这应该演示如何解决它:

import java.lang.reflect.Field;

class Super {
private int i = 5;
}

public class B extends Super {
public static void main(String[] args) throws Exception {
B b = new B();
Field f = b.getClass().getSuperclass().getDeclaredField("i");
f.setAccessible(true);
System.out.println(f.get(b));
}
}

(或 Class.getDeclaredFields 表示所有字段的数组。)

输出:

5

关于java - 通过 Java 中的反射访问私有(private)继承字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3567372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com