关于DatabaseHelper extends SQLiteOpenHelper的操作,
@Override
public void close() {
if (this != null) {
this.close();
} }
程序运行时正常,退出程序时this.close(); 这句话报错java.lang.StackOverflowError
本人菜鸟,谢谢了。
------解决方案--------------------
不加判断直接关闭不行么
------解决方案--------------------
嵌套,永无止境,当然StackOverflow了
this != null永远为真!
------解决方案--------------------
- Java code
public void close() { //1 if (this != null) { //2 this.close(); //3 } }