在 Java 中将 HashSet 转换为 TreeSet

java 8object oriented programmingprogramming

首先,创建一个带有字符串值 − 的 HashSet

HashSet<String> hashSet = new HashSet<String>();
hashSet.add("Bradley");
hashSet.add("Katie");
hashSet.add("Brad");
hashSet.add("Amy");
hashSet.add("Ryan");
hashSet.add("Jamie");

现在,将 HashSet 转换为 TreeSet −

Set<String> set = new TreeSet<String>(hashSet);

示例

以下是 Java 中将 HashSet 转换为 TreeSet 的程序 −

import java.util.HashSet;
import java.util.Set;
import java.util.TreeSet;
public class Demo {
   public static void main(String[] args) {
      HashSet<String> hashSet = new HashSet<String>();
      hashSet.add("Bradley");
      hashSet.add("Katie");
      hashSet.add("Brad");
      hashSet.add("Amy");
      hashSet.add("Ryan");
      hashSet.add("Jamie");
      hashSet.add("Kevin");
      hashSet.add("David");
      System.out.println("HashSet = "+ hashSet);
      Set<String> set = new TreeSet<String>(hashSet);
      System.out.println("TreeSet = "+set);
   }
}

输出

HashSet = [Kevin, Jamie, Ryan, Bradley, Katie, David, Brad, Amy]
TreeSet = [Amy, Brad, Bradley, David, Jamie, Katie, Kevin, Ryan]

相关文章