NoSuchMethodError - 没有静态方法比较(java / util / Comparator)

时间:2017-03-22 10:34:24

标签: java android gluon-mobile

我在Android设备上使用Gluon从List排序java.util。即使分配了8GB,该应用程序也没有为iOS编译(不够ram),但这是另一个问题。

classpath 'org.javafxports:jfxmobile-plugin:1.3.4'

compile 'com.gluonhq:charm:4.3.2'

jfxmobile version = '3.2.4'

导致崩溃的这一行:

highscoreList.sort(comparing(Highscore::getScore).reversed()); //#89

03-22 09:42:14.709 27312 27337 E AndroidRuntime: FATAL EXCEPTION: JavaFX Application Thread
03-22 09:42:14.709 27312 27337 E AndroidRuntime: Process: com.x.pacman, PID: 27312
03-22 09:42:14.709 27312 27337 E AndroidRuntime: java.lang.NoSuchMethodError: No static method comparing(Ljava/util/function/Function;)Ljava/util/Comparator; in class Ljava/util/Comparator; or its super classes (declaration of 'java.util.Comparator' appears in /system/framework/core-libart.jar)
03-22 09:42:14.709 27312 27337 E AndroidRuntime:        at com.x.pacman.HighscoreUtil.readHighscoreList(HighscoreUtil.java:89)

我开始搜索并找到了this post about NoSuchMethodError,所以我尝试了以下操作,但是它仍然崩溃,现在我没有想法:

Comparator<Highscore> comparator = new Comparator<Highscore>() {
    @Override
    public int compare(Highscore highscore1, Highscore highscore2) {
        return highscore1.getScore() - highscore2.getScore();
    }
};

highscoreList.sort(comparator); //#97


03-22 11:30:48.836 16547 16570 E AndroidRuntime: java.lang.NoSuchMethodError: No interface method sort(Ljava/util/Comparator;)V in class Ljava/util/List; or its super classes (declaration of 'java.util.List' appears in /system/framework/core-libart.jar)
03-22 11:30:48.836 16547 16570 E AndroidRuntime:        at com.kaufland.pacman.HighscoreUtil.readHighscoreList(HighscoreUtil.java:97)

2 个答案:

答案 0 :(得分:4)

在API级别24中添加了Comparator#comparing()List#sort(Comparator),并且您的设备可能运行的API级别较低。

自从API级别1以来,Collections#sort()可能会有更好的运气。

答案 1 :(得分:0)

仅供参考。使用http://www.vavr.io/集合时出现此错误。

我调用了toSortedSet()的函数LinkedHashSet。此函数尝试调用需要API级别为24的Comparator.naturalOrder()

如果必须使用较低的API级别,只需使用重载的toSortedSet(Comparator)函数并传递合适的比较器。