A.输出Bic
B.输出ic
C.输出icy
D.编译错误
A.String s1=null;
B.String s2='null';
C.String s3=(String)'abc';
D.String s4=(String)'\uface';
A.mid(2,s);
B.charAt(2);
C.indexOf(s);
D.s.indexOf('v');
A.s3=s1 + s2;
B.s3=s1 - s2;
C.s3=s1 & s2;
D.s3=s1 && s2;
A.length()
B.compareto()
C.indexof()
D.touppercase()