在Android应用中,以下方法是否存在问题:
public class MyApp extends android.app.Application {
private static MyApp instance;
public MyApp() {
instance = this;
}
public static Context getContext() {
return instance;
}
}
并在需要上下文的地方传递它(例如SQLiteOpenHelper)(当然不泄漏)?