Java Array Sum sum(long[] counts)

Here you can find the source of sum(long[] counts)

Description

sum

License

Open Source License

Declaration

public static long sum(long[] counts) 

Method Source Code

//package com.java2s;
/*/* w ww.java 2  s. com*/
 * (C) Copyright 2009 Nuxeo SAS (http://nuxeo.com/) and contributors.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser General Public License
 * (LGPL) version 2.1 which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl.html
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * Contributors:
 *     Olivier Grisel
 */

public class Main {
    public static long sum(long[] counts) {
        long sum = 0;
        for (int i = 0; i < counts.length; i++) {
            sum += counts[i];
        }
        return sum;
    }
}

Related

  1. sum(Integer... ints)
  2. sum(long array[])
  3. sum(long... values)
  4. sum(long[] array)
  5. sum(long[] array)
  6. sum(Number... numbers)
  7. sum(Number[] array)
  8. sum(Number[] numbers)
  9. sum(Object[] srcOne, Object[] srcTwo)