需求分析:键盘读取一行输入,去掉其中重复字符, 打印出不同的那些字符
思路:
1.键盘录入字符串
2.遍历字符串,将每个字符存储到集合中
3.将集合中重复的字符去掉
4.创建新集合,遍历老集合,获取老集合中的元素,判断新集合中是否包含这个元素
a)如果不包含,则将这个元素添加到新集合中
5.清空老集合中元素
6.将新集合中的元素添加到老集合中
7.遍历老集合
代码
package com.itheima;
import java.util.ArrayList;
import java.util.Scanner;
public class Test2 {
public static void main(String[] args) {
//创建键盘录入对象
Scanner sc = new Scanner(System.in);
System.out.println("请输入一行字符串:");
String str = sc.nextLine();
//将字符串转换为数组
char[] chs = str.toCharArray();
//创建集合对象
ArrayList<Character> list = new ArrayList<Character>();
//遍历char集合,并将不重复的元素添加到新集合中
for(char ch : chs){
if(!list.contains(ch)){
list.add(ch);
}
}
//定义新数组
char[] newChs = new char[list.size()];
//定义新集合的索引
int index = 0;
//遍历集合
for(char ch : list){
newChs[index++] = ch;
}
System.out.println(newChs);
}
}
控制台输出内容