package com.test.Test07;import java.util.HashSet;public class TestString {//这是一个main方法,是程序的入口public static void main(String[] args) {//创建一个HashSet集合HashSet<String> hs = new HashSet<>();hs.add("hello");System.out.println(hs.add("apple")); //truehs.add("banana");hs.add("html");System.out.println(hs.add("apple")); //false 这个apple没有放入到集合中hs.add("css");System.out.println(hs.size()); //5,以前有6个,因为无序唯一,现在变成了5个,把重复的apple去掉了。System.out.println(hs); //[banana, apple, css, html, hello]} }