以下代码的执行结果是? public class Example { public static void main(String[] args) { TreeSet<String> t = new TreeSet<String>( ); if (t.add("one")) if (t.add("two")) if (t.add("three")) t.add("four"); for (String s : t) { System.out.print(s); } } }
发布于 2020-12-25 16:55:38
登录后免费查看答案
关注者
0
被浏览
70