【单选题】阅读下面的程序 import java.util.*; class HashSetDemo{ public static void main(String[] args){ HashSet hs = new HashSet (); hs.add("abc"); hs.add("abc"); System.out.println(hs); } } 下列选项中,哪一个是程序的运行结果( )
【简答题】阅读下面的程序import java.util.*;class HashSetDemo{ public static void main(String[] args){ HashSet hs = new HashSet (); hs.add("abc"); hs.add("abc"); System.out.printl...
【单选题】阅读下面的程序import java.util.*;class HashSetDemo{ public static void main(String[] args){ HashSet hs = new HashSet(); hs.add("abc"); hs.add("abc"); System.out.println(hs);}}下列选项中,哪一个是程序的运行结果()