检测传入字符串是否存在重复字符,返回boolean,比如"abc"返回true;"aac"返回false
这里提供两种思路:
第一种:
import java.util.HashSet;import java.util.Set;public class Test { public static boolean checkDifferent2(String iniString) { //将参数的每一个字符都写入数组 String[] a = iniString.split(""); //这里使用Set类下的HashSet对象,该对象是不允许重复的 Set a1 = new HashSet(); //将参数数组内的值挨个赋到HashSet中 for(int i=0; i
第二种:
/* * 使用String的charAt()方法,利用循环嵌套拿出字符串中每一个字符进行对比 */ public static boolean checkDifferent(String iniString) { boolean result = false; if (iniString.length() > 1) { for(int i=0; i