//用来存储字符串里每一个出现过的字符,且不会出现反复的
Set<String> set = new HashSet<String>();
int stringLength = stringArray.length;
for (int i = 0; i < stringLength; i++) {
set.add(stringArray[i]);
}
//移掉set中的一个空字符
set.remove("");
System.out.println(set);
int count = 0;
boolean flag = true;
for (String s : set) {
while (flag) {
//假设索引存在
if (tempStr.indexOf(s) != -1) {
//记录出现字符的当前位置
int index = tempStr.indexOf(s);
//让字符串从下一索引处開始
tempStr = tempStr.substring(index+1);
//假设索引存在,记录值加1
count++;