0

私はコードを持っています:

public class Main {
    static String strings[];

    public static void main(String[] args) {
        strings = new String[10];
        for (String s : strings) {
            s= new String("test");
        }

        for (String s : strings) {
            System.out.println(s);
        }
    }

}

すべての文字列に「test」ではなく null が含まれているのはなぜですか?

4

4 に答える 4

-1

For-each ループで反復配列の代入を行うことは禁止されています。

于 2013-05-19T11:27:30.783 に答える