Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am making program that adds up the values from an array of a class. I keep getting an error about binary operators. My code is:

public static int sum(Array[] x){
   int sum = 0;
   for (int i = 0; i < x.length; i++){
       sum += x[i];
   }
   return sum;
}

Thanks in advance!

share|improve this question
1  
please include the full stacktrace. and shouldn't Array[] x be int[] x? – user1329572 Nov 27 '12 at 19:08
What does your Array class look like? – GriffeyDog Nov 27 '12 at 19:09

3 Answers

It seems you are using an Array[], and there is no operator+ for the type Array (which is the type of x[i])

You probably wanted int[] as the type of x.

public static int sum(int[] x){
//                     ^^
//               note the fixed type of the array
   int sum = 0;
   for (int i = 0; i < x.length; i++){
       sum += x[i];
   }
   return sum;
}

Bonus: For simplicity and readability - you might want to consider using a for-each loop

public static int sum(int[] x){
       int sum = 0;
       for (int e : x){
           sum += e;
       }
       return sum;
}
share|improve this answer

your parameter is an array with type Array. What are you expecting to see an int "+" an Array object?

share|improve this answer

You need to use int[] and not Array[] which is a generic type.

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.