Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在关注这个关于 ORMLite 的教程,但是当我看到这行代码时:
userDao = BaseDaoImpl.createDao(getConnectionSource(), User.class);
我收到以下错误:
来自 BaseDaoImpl 类型的方法 createDao(ConnectionSource, Class) 不可见
有什么解决办法吗?
请阅读更多最新的文档,因为该教程有点过时了。
http://ormlite.com/docs/dao-setup
你不再BaseDaoImpl.createDao(...)直接打电话。而是使用
BaseDaoImpl.createDao(...)
userDao = DaoManager.createDao(getConnectionSource(), User.class);
请 ping 教程所有者让他更改他的文档。