Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 java 中的 compareTo 方法按字母顺序对 3 个字符串进行排序,而不使用数组。
最快的方法是设置 6 个比较语句并按最小到最大排序,还是有更简单的方法?谢谢!
把它放进去TreeSet。
TreeSet
TreeSet<String> t = new TreeSet<>(); t.add("stack"); t.add("over"); t.add("flow"); System.out.println(t);
输出:
[flow, over, stack]