SCJP 1.6版考題 155

出自 陳富國維基館
前往: 導覽搜尋
The doesFileExist method takes an array of directory names representing a path from the root filesystem 
and a file name. 
The method returns true if the file exists, false if it does not.
Place the code fragments in position to complete this method.

SCJP155-2.png
可拖拉的選項:
SCJP155.png

解答


Ans:
SCJP155-1.png

解說:

doesFileExist方法傳入目錄名稱之一維字串陣列(用以表示相對於根目錄的一個目錄),以及一個檔案名稱,
這個方法回傳
true,當檔案存在的話
false,當檔案不存在的話
此題問程式應該如何寫…