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?
ArrayList<Double> m = new ArrayList<Double>();
public double incassoMargherita() { double sum = 0; for(int i = 0; i < m.size(); i++) { } return sum; }
as?
Two ways:
Use indexes:
double sum = 0; for(int i = 0; i < m.size(); i++) sum += m.get(i); return sum;
Use the "for each" style:
double sum = 0; for(Double d : m) sum += d; return sum;
1.4m articles
1.4m replys
5 comments
57.0k users