标签:detail system sdn intvalue 使用 log 通过 int 反射
在Java中使用反射修改私有属性
Integer a = Integer.valueOf(1);
// TODO
Field f = a.getClass().getDeclaredField("value");
f.setAccessible(true);
f.set(a,2);
System.out.println(a.intValue()); // 输出2
参考链接
https://blog.csdn.net/tabactivity/article/details/50726353
标签:detail system sdn intvalue 使用 log 通过 int 反射
原文地址:https://www.cnblogs.com/zizaiwuyou/p/9371253.html