应用程序的 main 方法中有以下语句,则输出的结果是()。
String s1=new String("abc");
String s2=new String("abc");
boolean b1=s1.equals(s2);
boolean b2=(s1==s2);
System.out.print(b1+""+b2);
时间:2021-01-07
人气:0
下面的程序段创建了 BufferedReader类的对象 in,以便读取本机 c 盘 my 文件夹下的文件 1.txt。File 构造函数中正确的路径和文件名的表示是( )。
File f = new File(填代码处 );
file =new FileReader(f);
in=new BufferedReader(file);
时间:2021-01-07
人气:0