• 2021-04-14
    如果在一台 PC 机的c:\source目录运行如下代码: import java.io.*; class Path { public static void main(String[] args) throws Exception { File file = new File('Ran.test'); System.out.println(file.getAbsolutePath()); } } 则,期望的输出结果为?
  • 举一反三