在java中添加集合到可迭代列表[关闭]

Posted

技术标签:

【中文标题】在java中添加集合到可迭代列表[关闭]【英文标题】:Adding set to iterable list in java [closed] 【发布时间】:2013-10-28 00:24:13 【问题描述】:

所以我有一些 Set,我想将元素添加到 LinkedList,以便可以迭代它们。我将如何在 java 中执行此操作?

【问题讨论】:

带代码。带代码。或互联网搜索,然后编码。 puslic static void main(String[] args) 【参考方案1】:

取自这里的一个问题:Adding items to end of linked list

class Node 
    Object data;
    Node next;
    Node(Object d,Node n) 
        data = d ;
        next = n ;
       

   public static Node addLast(Node header, Object x) 
       // save the reference to the header so we can return it.
       Node ret = header;
   // check base case, header is null.
   if (header == null) 
       return new Node(x, null);
   

   // loop until we find the end of the list
   while ((header.next != null)) 
       header = header.next;
   

   // set the new node to the Object x, next will be null.
   header.next = new Node(x, null);
   return ret;
   

【讨论】:

以上是关于在java中添加集合到可迭代列表[关闭]的主要内容,如果未能解决你的问题,请参考以下文章

java 列表迭代器

在迭代期间可以变异的可迭代集合

JavaSE复习_8 集合框架复习

Java集合框架--List接口 & List接口的使用 & 列表迭代器ListIterator

刷新 WPF Datagrid 未绑定到可观察集合?

通用枚举到可迭代转换器 [关闭]