Program ini menunjukkan kesalahan waktu kompilasi .. mulai ilegal jenis untuk (Integer it: arr), mengapa itu menunjukkan kesalahan? [duplikat]

Dec 19 2020
import java.util.*;
class Test
{
    Set<Integer> st = new HashSet<Integer>();

    Integer arr[]={1,1,2,2,4,8};

    for (Integer it : arr)
    {
        st.add(it);
        System.out.println(st);
    }

    public static void main(String ar[]){

        System.out.println("Main");


}}

Jawaban

Verity Dec 19 2020 at 16:27

Letakkan for-loop Anda di dalam metode utama, seperti ini:

public static void main(String ar[]) {

    Set<Integer> st = new HashSet<Integer>();

    Integer arr[]={1,1,2,2,4,8};

    for (Integer it : arr) {
        st.add(it);
        System.out.println(st);
    }


}