下列Application程序中,指定as为字符串数组类型,先创建一个HashSet对象并赋值,然后在屏幕输出s,请将程序补充完整。 import java.util.*; public class test17_1{ publ

admin2009-01-15  35

问题 下列Application程序中,指定as为字符串数组类型,先创建一个HashSet对象并赋值,然后在屏幕输出s,请将程序补充完整。
   import java.util.*;
   public class test17_1{
        public static void main(String[] args){
            __________s=new HashSet();
            s.add("Hello");
            s.add("World");
            s.add(new Character(’我’));
            s.add(new Integer(23));
            s.add("Hello");
            __________as={"W","o","r","1","d"};
            s.add(as);
            s.add(null);
            s.add(new Integer(23));
            s.add(null);
            System.out.println(__________);

选项

答案Set String[] s

解析
转载请注明原文地址:https://kaotiyun.com/show/Emnp777K
0

最新回复(0)