填空题

在java.io包中有某个类同时实现了DataInput接口和DataOutput接口,这个类是【 】。

【参考答案】

RandomAceessFile
<上一题 目录 下一题>
热门 试题

填空题
在一个类的内部嵌套定义的类称为【 】。
单项选择题
阅读下面程序import javax.swing.JOptionPane;public class BreakLabelTest{public static void main (String args[]){String output= ;stop:{for(int row=1;row<10;row++){for(int column=1;column<=5;column++){if(row=5)break stop;output+= * ;}output+= n ;}output+= nLoops terminated normally ;}JOptionPane.showMessageDialog(null,output, 用一个标志测试break语句”,JOptionPane.INFORMATION_MESSAGE);System.exit(0);}}程序运行结果是【 】
A.窗口中有5行*****
B.窗口中有5行****
C.窗口中有4行*****
D.窗口中有6行*****
相关试题
  • 面向对象的语言将客观世界都看成由各种对象...
  • 下列软件系统结构图,的宽度为【 】
  • Java语言的数据类型分为简单数据类型和【 ...
  • 下列程序中,实例tat是监听器,fr是事件源...
  • 下面程序执行的结果应是【 】。class Tes...