public boolean xh_repeat(String[] arry) {
//用于判断是否有重复值的标记
boolean flag=false;
for (int i = 0; i < arry.length; i++) {
String temp=arry[i];
int count=0;
for (int j = 0; j < arry.length; j++) {
String temp2=arry[j];
//有重复值就count+1
if(temp.equals(temp2)){
count++;
}
}
//由于中间又一次会跟自己本身比较所有这里要判断count>=2
if(count>=2){
flag=true;
}
}
if(flag){
return true;
}else{
return false; //没有
}
}
陪伴而非守候
繁花如伊
aluckdog
相关分类