A: int nPersons;
B: int mEggs;
C: string movieNo;
D: int studentIDNumber;
举一反三
- 以下代码中,符合编码规范的有 A: int nPersons; B: int mEggs; C: string movieNo; D: int studentIDNumber;
- 以下代码,对数组初始化正确的是?() A: int[]arr; B: int arr={1,2,3}; C: String[] arr={"1"}; D: String arr=”1”;
- 下列关于Java数组的代码片段,错误的是( )。 A: int[] a=new int[20]; B: String[] names = new String[3]; C: String[] names = {"Bob", "Achebe", null}; D: int[5] ages = new int[];
- 以下哪些方法是Graphics类的方法? A: drawString(String, int, int) B: add(Component) C: drawImage(Image, int, int, ImageObserver) D: drawLine(int, int, int, int)
- 以下关于String类的常见操作中,哪个是方法会返回指定字符ch在字符串中最后一次出现位置的索引() A: int indexOf(int ch) B: int lastIndexOf(int ch) C: int indexOf(String str) D: int lastIndexOf(String str)
内容
- 0
以下方法的声明正确的有?( ) A: void m1(){} B: int m2(){}; C: String m3(int i){} D: void int(){}
- 1
给出下列【代码】注释标注的代码的输出结果。abstract class A {abstract int get(int a,int b);}public class E {public static void main(String args[]) {A a=new A() {public int get(int a,int b){return a+b;}};int m = a.get(2,5);a=new A() {public int get(int a,int b){return a*b;}};int n = a.get(2,5);System.out.printf("%d:%d",m,n);//【代码】}}
- 2
以下数组定义中,合法的是 。 A: int a[]="string"; B: int a[5]={0,1,2,3,4,5}; C: string s="string"; D: chara[5]={0,1,2,3,4,5};
- 3
下列数组定义合法的是( )。 A: int a[ ]={"string"}; B: int a[ ]={ 0,1,2,3,4}; C: int a[ ]="string" D: int a[2][ ]={{1,2},{3,4}};
- 4
函数filter可以具有哪些类型? A: (Int - Bool) - [Int] - [Integer] B: (Int - Bool) - [Integer] - [Integer] C: (Int - Bool) - [Int] - [Int] D: (Char - Bool) - String - String