Given the following class, which statements can be inserted at position 1 without causing the code to fail compilation?()   public class Q6db8 {   int a;   int b = 0;   static int c;   public void m() {   int d;   int e = 0;   // Position 1   }   } 

A . a++; B . b++; C . c++; D . d++; E . e++;

时间:2022-09-26 17:44:26 所属题库:SCJP程序员认证考试题库

相似题目