java set集合与List集合练习
Posted ╄承诺、带给的伤痛—
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java set集合与List集合练习相关的知识,希望对你有一定的参考价值。
题目:分别向Set集合一级List集合中添加"A","a","C","c","a",五个元素,观察重复值"a"能否在List集合一级Set集合中成功添加
package com.hanqi.jihe; import java.util.*; public class Listjihe { public static void main(String[] args) { ArrayList<String> ls = new ArrayList<String>(); ls.add("A"); ls.add("a"); ls.add("C"); ls.add("c"); if (ls.add("a")) { System.out.println("添加成功"); } else { System.out.println("添加失败"); } for(String i :ls) { System.out.println(i); } } }
package com.hanqi.jihe; import java.util.*; public class Setjihe { public static void main(String[] args) { Set<String> se = new HashSet<String>(); se.add("A"); se.add("a"); se.add("C"); se.add("c"); if (se.add("a")) { System.out.println("添加成功"); } else { System.out.println("添加失败"); } for(String i :se) { System.out.println(i); } } }
以上是关于java set集合与List集合练习的主要内容,如果未能解决你的问题,请参考以下文章