It is more stylistically acceptable in java to write constants in double operations with or without ".0" ?
As in,
double var= 200.0; double d= var/250.0; double h= 1.0 - d;
vs.
double var= 200; double d= var/250; double h= 1 - d;
Thanks
|
|
|
|
|
|
|
As others have pointed out, it is just a question of preference and readability. See the following code and the disassembled bytecode:
result:
As you can see, the two methods are as close to identical as you can get. |
||
|
|
|
|
Most people will either do a "double take" when they see an arithmetic expression with mixed types, or completely misunderstand it. The same goes (to a lesser extent) for leading zeros; e.g. in Good style is all about writing your code so that it is easy to understand, and easy for some else to maintain. So it follows that it is good style to use literals of the right type, rather than relying on promotion, and (to a lesser extent) to use leading zeros. |
||
|
|
|
|
Leading and trailing zeros as needed, with single precision constants tagged as such:
|
|||
|
|
It's not about style per se. When you write It's much better to be specific - if you're using a double constant, write it as double:
All of the above are floating point literals. Being specific is especially important in your second example:
I've omitted the type of |
||||||||||||||
|
|
|
it's better with .0 |
||
|
|
|
|
I'm not a Java guy but C & C++ have the same issue. For me, I always use the ".0" just so that I'm never bitten by unwanted integer division. It also silences the occasional compiler warning about type conversion (though those are rare due to well-defined type promotion semantics from integers to floating point). |
||
|
|