Hi All,
I am doubt about explanation for following question(Q 27 of Practice exam 2) :
What is the result of:
Correct answer is "Compilation Error", but explanation is "The method parseBoolean(
String) is not available in java.lang.Boolean class"
I do have parseBoolean in Boolean class and I think all wrapper classes have .parseXXX. To my opinion the answer "Compilation Error" is correct because parseBoolean returns primitive boolean and getClass method cannot be applied on primitive.
Am I wrong? Please Explain.