| Author |
when i use float gg =10f;// flaot gg = 10;
|
giribabu rosi
Greenhorn
Joined: Apr 14, 2005
Posts: 17
|
|
|
tell me?
|
 |
Tom Johnson
Ranch Hand
Joined: May 11, 2005
Posts: 142
|
|
Default for floating point numbers is double so to put data into a float u have to explicitly tell compiler this. However its not needed it the value you're putting in is same size or smaller than float. myFloat1 explicitly indicated as a float, without it there is a compile error as double 190.245, the default without the f suffix, wont fit into float //tom
|
<a href="http://faq.javaranch.com/java/UseCodeTags" target="_blank" rel="nofollow">Use Code Tags!!</a>
|
 |
 |
|
|
subject: when i use float gg =10f;// flaot gg = 10;
|
|
|