下列【1】【2】【3】【4】注释标注的哪行代码有错误?import java.util.*;public class E {public static void main(String args[]) {Map<;String,String>; map = new HashMap<;String,String>;(); //【1】Set<;Integer>; treeSet = new TreeSet<;Integer>;();//【2】Map<;String,String>; treeMap= new TreeMap<;String,String>;(); //【3】List<;char>; list = new LinkedList<;char>;(); //【4】 A: 【1】 B: 【2】 C: 【3】 D: 【4】
下列【1】【2】【3】【4】注释标注的哪行代码有错误?import java.util.*;public class E {public static void main(String args[]) {Map<;String,String>; map = new HashMap<;String,String>;(); //【1】Set<;Integer>; treeSet = new TreeSet<;Integer>;();//【2】Map<;String,String>; treeMap= new TreeMap<;String,String>;(); //【3】List<;char>; list = new LinkedList<;char>;(); //【4】 A: 【1】 B: 【2】 C: 【3】 D: 【4】
String(3, "abc")的结果为【1】.
String(3, "abc")的结果为【1】.
以下代码共创建了几个对象?String s1=new String("hello");String s2=new String("hello");String s3=s1;String s4=s2; A: 2 B: 4 C: 1 D: 3
以下代码共创建了几个对象?String s1=new String("hello");String s2=new String("hello");String s3=s1;String s4=s2; A: 2 B: 4 C: 1 D: 3
$string="A";$string=$string x 4;$string.="B";$string.="A";$find_B=index($string,"B");执行以上语句后,$find_B=? A: 4 B: 3 C: 2 D: 1
$string="A";$string=$string x 4;$string.="B";$string.="A";$find_B=index($string,"B");执行以上语句后,$find_B=? A: 4 B: 3 C: 2 D: 1
声明一个有3个元素的String类型的数组,不正确的是 A: String[] str = new String[3]; B: String str[] = new String[3]; C: String [] str = new String[3]; D: String[3] str = new String();
声明一个有3个元素的String类型的数组,不正确的是 A: String[] str = new String[3]; B: String str[] = new String[3]; C: String [] str = new String[3]; D: String[3] str = new String();
执行下面代码后,将创建()个对象。String s1="hello";String s2=new String(s1); A: 0 B: 1 C: 2 D: 3
执行下面代码后,将创建()个对象。String s1="hello";String s2=new String(s1); A: 0 B: 1 C: 2 D: 3
下列哪条语句能创建一个具有3个初始值为“”的元素的字符串数组 A: String strList[3](""); B: String[3] strList={"","",""}; C: String[] strList={"","",""}; D: String[3] strList=new String[3];
下列哪条语句能创建一个具有3个初始值为“”的元素的字符串数组 A: String strList[3](""); B: String[3] strList={"","",""}; C: String[] strList={"","",""}; D: String[3] strList=new String[3];
下列数组定义及初始化中,正确的是_______。 A: int a[]="string"; B: int a[5]={0, 1, 2, 3, 4, 5}; C: char a="string"; D: int a[]={0, 1, 2, 3, 4, 5};
下列数组定义及初始化中,正确的是_______。 A: int a[]="string"; B: int a[5]={0, 1, 2, 3, 4, 5}; C: char a="string"; D: int a[]={0, 1, 2, 3, 4, 5};
下列哪个语句能引起编译器错误?( ) A: int[] a = { 1, 2, 3, 4 }; B: int a[][] = { 1, 2 }, { 3, 4 }; C: int a[] = new int[4]; D: String a[] = { "1", "2", "3" };
下列哪个语句能引起编译器错误?( ) A: int[] a = { 1, 2, 3, 4 }; B: int a[][] = { 1, 2 }, { 3, 4 }; C: int a[] = new int[4]; D: String a[] = { "1", "2", "3" };
在C#中,下列那条语句能创建一个具有3个初始值为“”的 元素的字符串数组?( ) A: string StrList[3](“”); B: string[3] StrList ={“”,“”,“”}; C: string[] StrList ={“”,“”,“”}; D: string[] StrList =new string[3];
在C#中,下列那条语句能创建一个具有3个初始值为“”的 元素的字符串数组?( ) A: string StrList[3](“”); B: string[3] StrList ={“”,“”,“”}; C: string[] StrList ={“”,“”,“”}; D: string[] StrList =new string[3];