我有一個HashSet< ArrayList <String>>
,我想從ArrayList<String>
中取出HashSet。我該怎麼做呢?從HashSet獲取ArrayList
-6
A
回答
-1
最常見的方式做到這一點:
HashSet<ArrayList<String>> set = assingYourSet();
for (Iterator iterator = set.iterator(); iterator.hasNext();) {
ArrayList<String> arrayList = (ArrayList<String>) iterator.next();
// Do Stuff...
}
+1
最常見的做法...... 10年前,每個循環都會出現。 –
0
使用iterator()
函數described here獲取HashSet上的迭代器,然後從中獲取元素。
0
HashSet
實現Iterable
界面,您可以循環在它與foreach循環:
HashSet<ArrayList<String>> arrayListSet = ...;
for (ArrayList<String> arrayList : arrayListSet) {
// Use arrayList here
}
相關問題
- 1. 從SharedPreferences獲取HashSet
- 2. HashSet與ArrayList
- 3. 獲取Hashset鍵
- 4. ArrayList中的Hashset或
- 5. ArrayList to Hashset to SharedPref
- 6. 獲取從ArrayList中
- 7. 從HashSet到Arraylist的推土機映射
- 8. 從hashset獲取隨機元素?
- 9. 從hashset中獲取hashset.Count == 1的元素
- 10. ArrayList vs HashSet中的removeAll()
- 11. 獲取arraylist在arraylist
- 12. 如何從ArrayList.subList獲取ArrayList?
- 13. 從ArrayList獲取字符串
- 14. 從ArrayList中獲取值java
- 15. 如何從Arraylist獲取值?
- 16. 從arrayList中獲取值
- 17. 從arraylist java中獲取值?
- 18. 獲取從一個ArrayList
- 19. 從Parse對象獲取ArrayList
- 20. C#獲取從ArrayList中
- 21. 從ArrayList中獲取類
- 22. Android從ArrayList中獲取值
- 23. 從TXT文件獲取ArrayList
- 24. 獲取錯誤使用HashSet
- 25. 從ArrayList中的ArrayList中的ArrayList中獲取值?
- 26. 獲取ArrayList值?
- 27. Java:ListList的ArrayList,Map的HashMap和Set的HashSet?
- 28. 取從ArrayList中
- 29. 如何從JSONObject請求獲取ArrayList
- 30. 從結構的ArrayList獲取參數
任何企圖從你身邊這麼遠? –
我試過用這個。讓我們將HashSet>命名爲。 ArrayList < String > = HashSet.get(0); 我不知道HashSet是如何工作的... –
user3045664
刪除您的java語法錯誤,並提供可以使用的源代碼剪切。 – wumpz