在J2EE中,下面的代码中出现编译错误的是()。
A.Filef=newFile("/","autoexec.bat");
B.DataInput Streamdin=new Data Input Stream(new File Input Stream("autoexec.bat"));
C.Input Stream Readerin=new Input Stream Reader(System.in);
D.Output Stream Writer out=new Output Stream Writer(System.in);
第1题:
在J2EE中,如果去编译并运行下面的代码,在这里假定在当前目录下没有Hello.txt文件:
importjava.io.*;
publicclassMine{
publicstaticvoidmain(Stringargv[]){
Minem=newMine();
System.out.println(m.amethod());}
publicintamethod(){try{
FileInputStreamdis=newFileInputStream("Hello.txt");}
catch(FileNotFoundExceptionfne){
System.out.println("Nosuchfilefound");
return-1;}
catch(IOExceptionioe){}finally{
System.out.println("Doingfinally");}
return0;}}
结果会输出()。
第2题:
第3题:
【单选题】关于下列代码说法正确的是: public class Cell{ public void drop(){ } public String drop(){ return "下落一行"; } public double drop(int x){ return "下落x行"; } }
A.无编译错误
B.代码public String drop(){行,出现编译错误
C.代码public double drop(int x){行,出现编译错误
D.代码return "下落一行";行处出现编译错误
第4题:
在VB程序设计中,不属于代码编译过程中的错误的是( )
A.编辑错误
B.代码字体和颜色错误
C.逻辑错误
D.运行错误
第5题: