Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

13 Answers

up vote 70 down vote accepted

Just call Math.abs?

share|improve this answer
11  
Note the edge cases, e.g. Math.abs(Integer.MIN_VALUE) = Integer.MIN_VALUE. – Zach Scrivena Jan 30 '09 at 0:24

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:

number = (number < 0 ? -number : number);

or

if (number < 0)
    number = -number;
share|improve this answer
7  
Oh, dilemma time - there are so many equally good answers, that I might as well delete mine. But then I'd lose 40 points, and I'll never catch Jon Skeet if I do that. – Paul Tomblin Jan 29 '09 at 21:53
Sorry -1 for reinventing a standard library call. – cletus Jan 29 '09 at 22:41
4  
@cletus, did you notice that I had already mentioned the standard library call? Or that in this case, the "reinvent" takes fewer instructions that calling the library? – Paul Tomblin Jan 30 '09 at 0:30
Also worth understanding the details behind the library call. Especially if there are side effects to the library call, or performance issues like Paul mentions. – simon Jan 30 '09 at 16:27
+1 to undo cletus' downvote :-) – TheBlastOne Oct 1 '12 at 14:10

Use the abs function:

int sum=0;
for(Integer i : container)
  sum+=Math.abs(i);
share|improve this answer

You're looking for absolute value, mate. Math.abs(-5) returns 5...

share|improve this answer

1 more

Why don't you use:

Ma..ab....

... Oh.

share|improve this answer

The easiest, if verbose way to do this is to wrap each number in a Math.abs() call, so you would add:

Math.abs(1) + Math.abs(2) + Math.abs(1) + Math.abs(-1)

with logic changes to reflect how your code is structured. Verbose, perhaps, but it does what you want.

share|improve this answer
1  
You could make it less verbose with a static import. – Dan Dyer Jan 29 '09 at 21:32

Are you asking about absolute values?

Math.abs(...) is the function you probably want.

share|improve this answer

You want to wrap each number into Math.abs(). e.g.

System.out.println(Math.abs(-1));

prints out "1".

If you want to avoid writing the Math.-part, you can include the Math util statically. Just write

import static java.lang.Math.abs;

along with your imports, and you can refer to the abs()-function just by writing

System.out.println(abs(-1));
share|improve this answer
int x = -20
int y = x + (2*(-1*x));
// Therefore y = -20 + (40) = 20
share|improve this answer

Why don't you multiply that number with -1?

Like This:

//Given x as the number, if x is less than 0, return 0 - x, otherwise return x:
return (x <= 0.0F) ? 0.0F - x : x;
share|improve this answer
String s = "-1139627840";
BigInteger bg1 = new BigInteger(s);
System.out.println(bg1.abs());

Alternatively:

int i = -123;
System.out.println(Math.abs(i));
share|improve this answer

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.

share|improve this answer
1  
The whole point of Long.MIN_VAL is that you can't have a long that's "less than LONG.MIN_VAL". – Paul Tomblin Oct 1 '12 at 14:18

If you're interested in the mechanics of two's complement, here's the absolutely inefficient, but illustrative low-level way this is made:

private static int makeAbsolute(int number){
     if(number >=0){
        return number;
     } else{
        return (~number)+1;
     }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.