compareto

    1熱度

    3回答

    我試圖創建一個程序,它接受用戶輸入並按字母順序排序,因爲它使用compareToString(不是array.sort)並在最後打印最終的已排序數組。我已經掌握了這個問題的大部分內容,但是一旦我進入排序功能就會丟失。有沒有人對我如何能夠完成SortInsert方法有任何想法? import java.util.*; public class SortAsInserted { publ

    1熱度

    1回答

    我無法寫一個compareTo()和charAt()方法是建立一個字符串鏈表對象。類,稱爲LString包含一個構造函數和其他一些方法。它運行與測試其能力,作爲一個鏈表字符串生成另一個文件,我收到此錯誤信息: Running constructor, length, toString tests (10 tests) Starting tests: .......... Time: 0.000

    0熱度

    3回答

    我知道compareTo可以返回正的負值和零值。 所以,如果我用 public class x implements Comparable <Object O> {/*...*/} ,並指定內部 public int compareTo(int i) { if (this.intg < i) { return -1; } else if (this.intg > i) {

    0熱度

    1回答

    我已經寫了這個問題的答案,但是,它的Netbeans顯示了一個錯誤,在這條線: if (key.compareTo(obj) <= 1) 的問題是: 寫這需要一個靜態方法具有自然順序的對象的列表或對象,List或Set的基類型的對象 以及整數n,如果列表或集合中至少有n個對象大於對象參數,則返回true以其自然順序,否則爲假 。 我嘗試: public static <T extends C

    -4熱度

    2回答

    所以我給了預先寫好的代碼,我必須填寫comepareTo函數。它需要比較字符串並按長度排序,但我不確定該方法中傳遞的是什麼。 import java.util.Arrays; public class testString implements Comparable<testString> { String tempStr; public testString(String st

    0熱度

    1回答

    我想在對象數組上使用二分搜索。我正在使用對象,因爲對於一個實例,我可能有一組字符串或ints。我目前堅持實施我的compareTo方法,並不確定下一步會是什麼。 這裏是我迄今爲止 - public static int binarySearch(Object[] items, Comparable target, int first, int last){ if(first > las

    0熱度

    2回答

    你能告訴我,爲什麼fillowing代碼: int a = new GregorianCalendar(2015,3,31,7,45).compareTo( new GregorianCalendar(2015,4,1,7,45); System.out.println(a); 打印出0? 有沒有辦法讓它正常工作? PS:我需要串出按日期排序,我用這個比較: array.sort(

    1熱度

    5回答

    我想讓我的程序比較兩個對象,但我總是收到一條錯誤消息,「找不到符號方法compareTo(Product)」。但是我已經檢查過了,我在Tool類中定義了compareTo方法,如下所示。 public class InventoryDemo { public static List<Product> products = new ArrayList<Product>(); p

    0熱度

    2回答

    該分配要求用戶按斜槓數和字典順序對路徑名進行排序。具體的指令是「你的任務是如 \home\me\cs1 \usr\share \var\log \usr\local\jdk1.6.0\jre\lib FileName是路徑名來讀取,然後排序路徑長度,即路徑名斜槓的數量進行排序路徑名的數組列表。相同長度的路徑名應安排在字典順序(通過調用String.compareTo即。)例如,以上給出的

    1熱度

    1回答

    我在爲構建字符串的鏈接列表對象編寫compareTo()和charAt()方法時遇到問題。這個名爲LString的類包含一個構造函數和其他一些方法。它運行與測試其能力,作爲一個鏈表字符串生成另一個文件,我收到此錯誤信息: Running constructor, length, toString tests (10 tests) Starting tests: .......... Time: