Page 1 of 1

About Question enthuware.ocpjp.i.v11.2.984 :

Posted: Sat Jun 20, 2020 12:13 pm
by BaxLi007
May I ask you - why you use f=Float.valueOf(s).floatValue()?
You use last expression .floatValue(), while at the step f=Float.valueOf(s) we already received the boxed Float.
So, what's the point to use f=Float.valueOf(s).floatValue() versus f=Float.valueOf(s) ?

Re: About Question enthuware.ocpjp.i.v11.2.984 :

Posted: Sat Jun 20, 2020 10:56 pm
by admin
There is no need for it actually. It is there only to confuse you :)