list java 可以重复吗
1个回答
展开全部
属性是????
先给你一个看看是不是你需要的好了,
1
2
3
4
5
6
7
8
9
10
11
12
13
// 利用 Set 的特性,将所有项目放入 Set
//中即可移除重复的项目
Set<String> stringSet = new HashSet<String>();
for (String element : duplicateArray) {
stringSet.add(element);
}
// Set.size() 为不重复项目的个数
String nonDuplicateArray[] = new String[stringSet.size()];
// 将 Set 中的项目取出放到 nonDuplicateArray 中
Object[] tempArray = stringSet.toArray();
for (int i = 0; i < tempArray.length; i++) {
nonDuplicateArray[i] = (String) tempArray[i];
}
本回答由提问者推荐
评论
4 0
先给你一个看看是不是你需要的好了,
1
2
3
4
5
6
7
8
9
10
11
12
13
// 利用 Set 的特性,将所有项目放入 Set
//中即可移除重复的项目
Set<String> stringSet = new HashSet<String>();
for (String element : duplicateArray) {
stringSet.add(element);
}
// Set.size() 为不重复项目的个数
String nonDuplicateArray[] = new String[stringSet.size()];
// 将 Set 中的项目取出放到 nonDuplicateArray 中
Object[] tempArray = stringSet.toArray();
for (int i = 0; i < tempArray.length; i++) {
nonDuplicateArray[i] = (String) tempArray[i];
}
本回答由提问者推荐
评论
4 0
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询