【单选题】阅读下面的程序 import java.util.Calendar; public class CalendarDemo { public static void main(String[] args) { Calendar cal = Calendar.getInstance(); cal.set(2008, 7, 8); System.out.println(cal.get(Calendar....
【单选题】阅读下面的程序 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);}}下列选项中,哪一个是程序的运行结果()