Here's an example:
Double d = (1/3);
System.out.println(d);
This returns 0, not 0.33333... as it should.
Does anyone know?
|
|
|
|
|
|
|
That's because |
|||
|
|
|
|
Use double and not Double unless you need to use these values in the object sense. Be aware about the Autoboxing concepts |
||
|
|
|
|
And thank you too! Problem solved :) |
||
|
|
|
|
If you have
(Actually, only casting |
||
|
|
|
|
Wow, thank you! But how about if i have: double d = (height/imageHeight)*imageWidth; What would I use on that? Double.valueOf() or something else? |
||||||
|