JComboBox[String] peopleChoice = new JComboBox[String](c);创建了 。
举一反三
- JComboBox<;String>; peopleChoice = new JComboBox<;String>;(c);创建了 。
- [[‘a’,’d’], [‘d’,’a’,’4’]]的类型是 A: [String.String] B: [Char, Int] C: [String] D: (String, String)
- 如果有以下关于String[][]的程序代码:String[][] strs = new String[2][5];以下描述正确的是( ) A: 产生10个String实例 B: 产生2个String实例 C: 产生0个String实例 D: 编译失败
- String s=new String(“hello”); String t =new String(“hello”); char c [ ] ={‘h’,’e’,’l’,’l’,’o’}; 下列哪些表达式返回true ?
- 给定如下Java代码,编译运行的结果是( )。public class Test { public static void main(String[] args) { Map[String, String] map = new HashMap[String, String](); String s = "code"; map.put(s, "1"); map.put(s, "2"); System.out.println(map.size()); }} A: 编译时发生错误 B: 运行时引发异常 C: 正确运行,输出:1 D: 正确运行,输出:2