下列Application程序中,指定as為字符串數(shù)組類型,先創(chuàng)建一個HashSet對象并賦值,然后在屏幕輸出s,
下列Application程序中,指定as為字符串數(shù)組類型,先創(chuàng)建一個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[] sSet String[] s
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。