单项选择题
能向内存直接写入数据的流是
A.FileOutputStream
B.FileInputStream
C.ByteArrayOutputStream
D.ByteArrayInputStream
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
下列类中属于字节输入抽象类的是
A.FileInputStream
B.ObjectInputStream
C.FiterInputStream
D.InputStream
点击查看答案&解析
单项选择题
阅读下面程序 public class Test3 { public static void main(String args[]){ int x=3, y=4, z=5; String s= xyz ; System.out.primln(s+x+y+z); } } 程序运行的结果是()
A.xyzl2
B.xyz345
C.xyzxyz
D.12xyz
点击查看答案&解析
相关试题
阅读下面程序 import java.io.*; pu...
如果线程正处于运行状态,可使该线程进入阻...
下列方法中,声明抛出InterruptedException...
如果使用Thread t=new Test()语句创建...
阅读下面程序 class Test implements R...