-2
for loop
とenhanced loop
の配列のすべての桁を合計しようとしています。 for loop
は問題なく動作していますが、enhanced loop
はout of bounds error
です。拡張ループが正しく値を加算しない
は、コードに従う:
import java.util.*;
public class test
{
public static void main(String[]args)
{
//This code sums all of the values in an array with a for loop
int count = 0;
int[] array = {1,2,3,4,5,6,7,8,9,10};
for(int item = 0; item<array.length; item++)
{
count += array[item];
}
System.out.println(Arrays.toString(array) + "\nCount = " + count);
//////////////////////////////////////////////////////////////////////////////
//This code is supposed to sum all of the digits in an array with a enhanced loop
int count2 = 0;
int[] array2 = {1,2,3,4,5,6,7,8,9,10};
for(int item : array2)
{
count2 += array2[item];
}
System.out.println(Arrays.toString(array2) + "\nCount = " + count2);
}
}
javaでは、 'item'は値を表し、これはjavascriptと似ていません。ここで' item'はインデックスを表します。 – AxelH