【发布时间】:2013-09-15 01:31:35
【问题描述】:
我有一个 SQLite 查询:
private String showAllType = "select * from tbl_Type";
我这样称呼它:
Cursor mCursor = mSQLiteDB.rawQuery(showAllType, null);
但是当我检查代码样式时,它会发出警告:'mCursor' hides a field'
我该如何解决这个问题?
【问题讨论】:
标签: java coding-style checkstyle