hashset

    0熱度

    1回答

    我想插入註釋在redis中用HSET作爲首選選項,但出現錯誤。 下面是代碼: var commmentData ={ id : id, comment : req.body.comment, postId : req.body.postId, userId : req.body.userId } redisClient.

    0熱度

    1回答

    我有以下情況: public class CustomClass { private LinkedList<ActionClass> actionList; private MyReaderClass reader; //methods... //other methods... hashcode() equals() //b

    -2熱度

    2回答

    import java.util.Enumeration; import java.util.HashSet; import java.util.Iterator; import java.util.Vector; public class Test { public static void main(String[] args) { Employee e1 =

    0熱度

    1回答

    我在我的OnCreate()中的字符串上有相同數量的2 Set<String>,其中一個Set<String>保存來自多個用戶的消息,而另一個保存這些用戶的名稱。我想加入這兩個Set<String>例如。可以說有3個消息和3個用戶名,我需要Set<String>(「消息」)中的第一個字符串與Set<String>(「名稱」)中的第一個字符串,然後是Set<String>(「消息」)中的第二個字符串

    0熱度

    1回答

    我正在使用hashsetList爲我的微調項創建一個新的列表,但沒有重複,但是當我在Spinner中添加它時,java會給出錯誤。當從mySQL顯示重複項時,它的項目工作正常。 這是我創建hashsetList之前MainActivity.java的摘錄。 @Override protected void onPostExecute(Void args) { // Locat

    -4熱度

    2回答

    我試圖製作一個唯一的< Integer> ListArrayA來自另一個< Integer> ListArrayB,它具有重複的元素。 ListArrayA和ListArrayB分開定義。列表B已經填充了數據,它有大約10000個整數。 我創建了一個名爲unique()的函數並使用了以下邏輯。運行這個邏輯時,程序永遠不會結束。我不知道這是非常簡單和小邏輯bu仍然這不起作用。靜態聲明是一個問題? 基

    0熱度

    1回答

    我有我的Java應用程序的問題,類verhuur繼承自bedrijf。在Bedrijf我想從類verhuur訪問方法getBegintijd,雖然我得到錯誤無法找到符號 - 方法getBegintijd。 有人可以幫我嗎? 類Bedrijf: // instance variables private HashSet<Verhuur> verhuur; /** * Constructor

    -2熱度

    1回答

    我有一個開始和endtimes哈希集,在我的代碼我計算它們之間的差異,所以我的結果是(分鐘): 60,30等 這是我的問題,我怎麼能得到所有這些結果的總和? 所以我想只是一個結果與每個結果的總和(例如90) 下面是不計數的事情的代碼,我想 for (Verhuur verhuur : verhuur) { //begin en eindtijd in variabelen

    0熱度

    1回答

    我試圖檢索SharedPreferences上的數據。 它被映射爲密鑰(電影名),價值(HashSet的,包含與影片中的所有信息),像這樣: SharedPreferences.Editor preferencesEditor = preferences.edit(); preferencesEditor.putStringSet(movieInfo[1], new HashSet<String

    0熱度

    1回答

    基本上我有三個變量a,b和c。這些變量之間有一定的關係。我需要將變量存儲在HashSet中,以便每個變量都不相同,並且不會有任何冗餘。 的Java方法: 在java中我只創建一個自定義類,覆蓋散列和平等的方法在自定義類,我會做。 HashSet<CustomClass> hSet = new HashSet<CustomClass>(); 斯卡拉方式(Scala的新手): Introducti