comparator

    0熱度

    2回答

    這是我的主要結構: 一些接口方法在類A中實現,其餘的都在子類中實現。 public interface I { // some methods // } public abstract class A implements I { // some variables and methods // } public class B extends A { // some

    1熱度

    2回答

    我有一個列表 List<String> names = new ArrayList<String>(); names.add("One"); names.add("Two"); names.add("Three"); names.add("Six"); names.add("Four"); names.add("Five"); 我想這個列表進行排序,使得六是第一位的,然後應該是按字

    1熱度

    4回答

    我有在裏面,並在其內容的其他對象的內容列表中的對象而不列表類似下面 List<LoginInformation> allUsersLoginInfo LoginInformation loginInformation 現在我想要的代碼比較這兩個,看看loginInformation的元素是否存在於allUsersLoginInfo LoginInformation是一個模型類。 它有名字和R

    0熱度

    1回答

    我使用Apache Commons IO比較和排序File[]類型的數組。 import org.apache.commons.io.comparator.*; public abstract class Order { static final String ABS = "abs", TYPE = "type", SIZE = "size"; public static vo

    0熱度

    2回答

    我使用下面的方法調用來返回對象列表。 final List<LinkModelSpi> documentLinks = this.documentLinksModelSpi.getDocumentLinks(); 接下來我使用了Comparator對這個列表進行排序。但List包含兩種類型的對象。有些功能的工作原理是返回DocumentLinkModelImpl和一些功能操作它返回LinkMo

    -1熱度

    2回答

    我使用Comparator接口,使用下面的代碼片段按升序排序對象: final List<LinkModelSpi> documentLinks = this.documentLinksModelSpi.getDocumentLinks(); //Add This method for Sorting Document Link View Same Order. Now The applica

    -4熱度

    2回答

    我已經創建了下列比較測試圖的所有元素: struct comparator{ bool operatior() (int a,int b){ return 1; } } 則以下algorthim: int main(){ // imports string to currentString ... std::map<int,ch

    1熱度

    3回答

    我的類實現了Comparator<ClassName>。 我的要求是在叫rNumber雙類型字段的降序排序ArrayList<Hw4b> myList;。我調用Collections.sort(myList,this); 我總是 異常在線程「主」 java.lang.IllegalArgumentException異常: 比較法違反其總承包!在 java.util.TimSort.mergeHi(

    0熱度

    1回答

    我有優先級隊列和我的比較器泛型類型的問題,因爲我不知道如何重新鍵入。 當我調用比較(IRecord t,IRecord t1)方法時,它需要IRecord對象,但我需要比較泛型類型。 Class AbstrPriorQueue必須是泛型。 有與對象IRecord工作的比較: public class MyComparator implements Comparator<IZaznam> { @

    1熱度

    1回答

    我是Java的新手,我嘗試使用Lambda表達式和比較器進行練習。 我有這個公共類的人與其他getter和toString方法: public class Person { private String name; private int age; private int computers; private double salary; public