About Question enthuware.ocpjp.i.v11.2.984 :
Posted: Sat Jun 20, 2020 12:13 pm
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) ?
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) ?