对所有元素求和 java arraylist

时间:2023-01-15
本文介绍了对所有元素求和 java arraylist的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我有:ArrayList<Double>m = new ArrayList();里面有double值,怎么把ArrayList元素全部加起来呢?

If I had: ArrayList<Double> m = new ArrayList<Double>(); with the double values ​​inside, how should I do to add up all the ArrayList elements?

public double incassoMargherita()
{
 double sum = 0;
 for(int i = 0; i < m.size(); i++)
 {          
 }
 return sum;
}

作为?

推荐答案

两种方式:

使用索引:

double sum = 0;
for(int i = 0; i < m.size(); i++)
    sum += m.get(i);
return sum;

使用for each"样式:

Use the "for each" style:

double sum = 0;
for(Double d : m)
    sum += d;
return sum;

这篇关于对所有元素求和 java arraylist的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:如何避免 Java 中的浮点数或双精度数的浮点精度 下一篇:递归地对数组中的整数求和

相关文章

最新文章