java字符串去重复_java去除字符串中重复、不重复、消除重复后字符
java去除字符串中重復(fù)、不重復(fù)、消除重復(fù)后字符
import java.util.HashSet;
import java.util.Set;
public class Main {
public static void main(String[] args) {
String str = "aaasd";
System.out.println("原字符串: "+str);
Set set1 = new HashSet();
Set set2 = new HashSet();
Set set3 = new HashSet();
//把字符串轉(zhuǎn)為字符數(shù)組
char[] cs = str.toCharArray();
//便利字符數(shù)組aaasd
for(char c:cs){
//把遍歷的字符加入set1(HashSet,無序不可重復(fù))
boolean b = set1.add(c);//asd
if(!b){
//b不為true就是有重復(fù)的字符,重復(fù)的字符加入set2
set2.add(c);//a
}
}
//把消除重復(fù)后的字符set1賦給Set3
set3.addAll(set1);//asd
//把消除的重復(fù)后的字符set1 - 重復(fù)的字符set2 = 不重復(fù)的字符
set3.removeAll(set2);//asd-a = sd
System.out.println("=========消除重復(fù)厚的字符=========");
for ( char c : set1){
System.out.print(c + "");
}
System.out.println("\n===========重復(fù)的字符===============");
for (char c :set2){
System.out.print(c + "");
}
System.out.println("\n========不重復(fù)的數(shù)組===========");
for (char c :set3){
System.out.print(c + "");
}
}
}
?著作權(quán)歸作者所有:來自51CTO博客作者1ceMan7的原創(chuàng)作品,如需轉(zhuǎn)載,請注明出處,否則將追究法律責(zé)任
總結(jié)
以上是生活随笔為你收集整理的java字符串去重复_java去除字符串中重复、不重复、消除重复后字符的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Mysql删除语句优化_MySQL性能优
- 下一篇: java string()函数_转载ja