喜悦春天

文章
4
资源
0
加入时间
3年0月20天

35.TreeSet的使用

package com.itheima.myTreeSet;import java.util.TreeSet;public class MyTreeSet1 { public static void main(String[] args) { TreeSet<Integer> treeSet=new TreeSet<>(); treeSet.add(5); treeSet.add(3);