填空题
Java语言采用了【 】字符集。
【参考答案】
Unicode
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
下列程序的输出结果是( )。class Father{int m.n;Father(int a,int B) { m=a;n=b}void show ( ){System.out.println( m and n: +m+ +n);}}class Son extends Father{int p;Son (int a,int b,int C) { super(a,B) ;p=c;}void show(){supur.show( );System.out.println( p: +p);}}class Test {public static void main (String args[ ]){ Son s:new Son(6,7,8); s.show( );}}
A. True
B. False
C.-1
D.1
点击查看答案&解析
填空题
有定义boolean b1=5!=6;,则变量b1的值是【 】。
点击查看答案&解析
相关试题
在Java中,线程的模型就是一个CPU、程序代...
阻塞状态根据产生的原因可分为【 】、等待...
一个对象的生命周期有3个阶段分别是【 】...
下列是一个Java Applet程序,填空使它的功...
写出下列程序的执行结果是【 】。已知:’...