摘要: class LastError<T> { private T lastError; public void setError(T t){ lastError = t; System.out.println("LastError: setError"); } } class StrLastError< 阅读全文
posted @ 2021-05-19 21:59 ou尼酱~~~ 阅读(143) 评论(0) 推荐(0)
摘要: getApplicationContext和getApplication返回结果一样,只是两者作用域不一样,getApplicationContext在所有context子类中都可以使用,getApplication只能在activity,或者service中使用(其实这也满足了大部分要求了) ge 阅读全文
posted @ 2021-05-19 08:43 ou尼酱~~~ 阅读(117) 评论(0) 推荐(0)