我有这个导致内存泄漏的非静态内部类,因为它包含对封闭类的隐式引用:
private class CalendarScheduleUpdatedEventListener extends ScheduleUpdatedEventListener.Stub {
@Override
public void onScheduleUpdatedEvent() throws RemoteException {
updateCalendar();
}
}
为了阻止它泄漏,我需要让它静止:
private static class CalendarScheduleUpdatedEventListener extends ScheduleUpdatedEventListener.Stub {
@Override
public void onScheduleUpdatedEvent() throws RemoteException {
updateCalendar();-> Compiler error - trying to access a non-static...
}
}
不可能使updateCalendar()
静态,因为在其中我访问其他非静态变量并且它变得一团糟。我该怎么办?
答案 0 :(得分:6)
您需要传入对外部类的实例的引用。而且你需要公开你的静态类。
public static class CalendarScheduleUpdatedEventListener extends ScheduleUpdatedEventListener.Stub {
@Override
public void onScheduleUpdatedEvent(final TheOuterClass instance) throws RemoteException {
instance.updateCalendar();
}
}
答案 1 :(得分:4)
bar