设有如下代码:
classBase{}
publicclassMyCastextendsBase{
staticbooleanb1=false;
staticinti=-1;
staticdoubled=10.1;
publicstaticvoidmain(Stringargv[]){
MyCastm=newMyCast();
Baseb=newBase();
//Here
}
}
则在//Here处插入哪个代码将不出现编译和运行错误。
A.b=m;
B.m=b;
C.d=i;
D.b1=i;
正确答案:AC