String.length() と 配列.length が違う理由(解決してない) - Qiita

String str = "a";int[] array = new int[10];System.out.println( "文字列の長さ = " + str.length() + "配列の要…