import java.util.*;
class set {
public static void main(String args[]) {
TreeSet<Character> t1 = new TreeSet<Character>();
TreeSet<Character> t2 = new TreeSet<Character>();
String s1 = "Ambitab bachan";
String s2 = "Ranjikanth";
for (char c1 : s1.toCharArray())
t1.add(c1);
for (char c2 : s2.toCharArray())
t2.add(c2);
t2.retainAll(t1);
System.out.println(t2);
}
}
这个程序在两个不同的字符串中找到共同的字符。在这个程序TreeSet
中用于存储值和retainAll()
方法用于查找常见字符。
谁能帮我减少代码行。