• 2022-06-08
    下列程序运行后的结果可能是________。import java. io. *;public class Test { public static void main (String [] args) { File file =new File ( "hello . txt" ) ; if (file. exists () ) { file.delete () ; } else { try { file . createNewFile ( ) ; } catch (Exception e ) { e .printStackTrace ( ) ; } } }}
    A: 如果文件不存在 ,则程序退出
    B: 如果文件已经存在 , 则程序退出
    C: 如果文件已经存在,则保留该文件
    D: 如果文件不存在 , 则创建该文件
  • 举一反三