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.
我正在使用db4o数据库在我的 Android 应用程序中存储数据。我想对Number字段上的对象进行排序。
但是,当我使用 时query.descend("number").orderDescending();,我得到了NullPointerException.
query.descend("number").orderDescending();
NullPointerException
为什么?
最后,解决了问题。
实际上问题是数字以双指数格式存储。然后我将数字转换为long,问题就消失了:-)