假设有String a = "A"; char b ='A'; int c=65,下面选项中正确的是( )。
A.if(a == b) {System. out. print("Equal") }
B.if(c == b) {System. out. print("Equal") }
C.if(a == c) {System. out. print ("Equal") }
D.if(c = b) {System. out. print("Equal") }
第1题:
假设有String a="A:;char='A';int c=65,选项______是正确的。
A.if(a==b){System.out.print("Equal")}
B.if(c==b){System.out.print("Equal")}
C.if(a==c){System.out.print("Equal")}
D.以上均不正确
第2题:
下面的变量定义中,不正确的是()
A.char * p="string";
B.int a[]={'A','B','C'};
C.float *q=&b, b;
D.double a, * r= &a;
第3题:
下面选项中,哪个类不是Object的子类?
A.String类
B.System类
C.Math类
D.int
第4题:
以下数据类型转换中,必须进行强制类型转换的是?
A.char→int
B.int→byte
C.float→double
D.String→Object
第5题:
在Java中,下列关于数据类型自动转换正确的是()。
A.char类型和int型相加一定是字符
B.double型可以自动转化为int
C.char+int+double+“”结果一定是double
D.基本数据类型和String相加结果一定是字符串型