Given the code format:
class DBConfiguration { | |
String user; | |
String password; | |
} |
And,
public class DBHandler { | |
DBConfiguration configureDB(String uname, String password) { | |
// insert code here | |
} | |
public static void main(String[] args) { | |
DBHandler r = new DBHandler(); | |
DBConfiguration dbConf = r.configureDB("manager", "manager"); | |
} | |
} |
Which code fragment must be inserted at line 6 to enable the code to compile?
A.
DBConfiguration f; | |
return f; |
return DBConfiguration; |
return new DBConfiguration(); |
retutn 0; |
題解
程式第5行的configureDB方法要回傳DBConfiguration物件,因此第6行需要實體化出DBConfiguration物件並將結果回傳,才可以順利完成編譯。
選項A,f為物件參考變數,需要初始化後才可以使用。
選項B,無法直接回傳一個類別。
選項C,正確答案。
選項D,回傳型態不能是數值0,而是DBConfiguration物件才對。