单项选择题
A. Array2 = array1;
B. Array2 = array3;
C. Array2 = array4;
D. Both A and B
E. Both A and C
F. Both B and C
单项选择题 Whichdeclarationpreventscreatingasubclassofanouterclass?()
单项选择题 1. class super { 2. public float getNum() {return 3.0f;} 3. } 4. 5. public class Sub extends Super { 6. 7. } Which method, placed at line 6, will cause a compiler error?()
单项选择题 public class test( public int aMethod()[ static int i=0; i++; return I; ) public static void main (String args[]){ test test = new test(); test.aMethod(); int j = test.aMethod(); System.out.printIn(j); ] } What is the result?()