问题遇到的现象和发生背景
测试一个问题,主动调用GC回收弱引用对象, 结果发现弱引用对象没有被回收.
用代码块功能插入代码,请勿粘贴截图
StudentWh student = new StudentWh();
//用弱引用保存student对象
WeakReference<StudentWh> mContextRef = new WeakReference<>(student);
//GC回收前---打印对象
Log.d("111","前mContextRef---" + mContextRef.get());
//主动调用GC回收
System.gc();
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
//GC回收后---打印对象
Log.d("111","后mContextRef---" + mContextRef.get());
运行结果及报错内容
D/111: 前mContextRef---com.roxmotor.basecomponent.toast.StudentWh@be3e8b3
D/111: 后mContextRef---com.roxmotor.basecomponent.toast.StudentWh@be3e8b3
我的解答思路和尝试过的方法
实际操作发现,GC回收前后两次打印结果相同,证明弱引用对象并没有被回收.
我想要达到的结果
哪位码农能解释一下,这是什么原因!