下面的程序段创建了 BufferedReader类的对象 in,以便读取

17 查阅

下面的程序段创建了 BufferedReader类的对象 in,以便读取本机 c 盘 my 文件夹下的文件 1.txt。File 构造函数中正确的路径和文件名的表示是( )。

File f = new File(填代码处 );

file =new FileReader(f);

in=new BufferedReader(file);

  • A."./1.txt"
  • B."../my/1.txt"
  • C."c:\\my\\1.txt"
  • D."c:\ my\1.txt"

参考答案:

C

暂无解析