I have a Java method in which I'm summing a set of numbers. However, I want any negatives numbers to be treated as positives. So (1)+(2)+(1)+(-1) should equal 5. I'm sure there is very easy way of doing this - I just don't know how!! Any tips would be much appreciated.
|
Just call Math.abs? |
|||||
|
|
The concept you are describing is called "absolute value", and Java has a function called Math.abs to do it for you. Or you could avoid the function call and do it yourself:
or
|
|||||||||||||||
|
|
The easiest, if verbose way to do this is to wrap each number in a Math.abs() call, so you would add:
with logic changes to reflect how your code is structured. Verbose, perhaps, but it does what you want. |
|||||
|
|
Are you asking about absolute values? Math.abs(...) is the function you probably want. |
|||
|
|
|
You want to wrap each number into
prints out "1". If you want to avoid writing the
along with your imports, and you can refer to the
|
|||
|
|
|
Why don't you Like This:
|
||||
|
|
Alternatively:
|
||||
|
|
|
I needed the absolute value of a long , and looked deeply into Math.abs and found that if my argument is less than LONG.MIN_VAL which is -9223372036854775808l, then the abs function would not return an absolute value but only the minimum value. Inthis case if your code is using this abs value further then there might be an issue. |
|||||
|
|
If you're interested in the mechanics of two's complement, here's the absolutely inefficient, but illustrative low-level way this is made:
|
|||
|
|

