ScrollPane是java swing中的滚动面板
Canvas是 html5中的画图
Scrollbar 是java swing中的滚动条上的
Applet是java小应用程序
Dialog是d窗
综上所述,若容器是指的数据结构中的容器,则选abcde
若容器是指的是可以容纳其他组件的容器,则选a e
1:ObjectInputStream ,ObjectOutputStream
2:try{}
3:10
4:多继承
5:new
6:int , char
7:KeyListener
8:Applet
以上答案尽请参考
import javaioBufferedInputStream;
import javaioBufferedOutputStream;
import javaioFile;
import javaioFileInputStream;
import javaioFileNotFoundException;
import javaioFileOutputStream;
import javaioIOException;
public class Test {
public static void main(String[] args) {
BufferedOutputStream out = null;
try {
out = new BufferedOutputStream(new FileOutputStream(new File("d:/infotxt")));
String line = "第一行文本\n第二行文本";
outwrite(linegetBytes());
} catch (FileNotFoundException e) {
eprintStackTrace();
} catch (IOException e) {
eprintStackTrace();
} finally {
if (out != null) {
try {
outclose();
} catch (IOException e) {
eprintStackTrace();
}
}
}
BufferedInputStream in = null;
try {
in = new BufferedInputStream(new FileInputStream("d:/infotxt"));
StringBuffer buffer = new StringBuffer();
byte[] buff = new byte[inavailable()];
while (inread(buff) != -1) {
bufferappend(new String(buff));
}
Systemoutprintln(buffer);
} catch (FileNotFoundException e) {
eprintStackTrace();
} catch (IOException e) {
eprintStackTrace();
} finally {
if (in != null) {
try {
inclose();
in = null;
} catch (IOException e) {
eprintStackTrace();
}
}
}
}
}
以上就是关于java面向对象程序设计练习题 求解答全部的内容,包括:java面向对象程序设计练习题 求解答、求JAVA练习题几他的答案、JAVA程序设计多选题---下面哪个不是Java中的容器( )等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)