コードで暗黙的な型変換 (自動ボクシング) を行っています。
この線:
a[0]=138;
実際には次のように変換されます。
a[0] = Integer.valueOf(138);
整数のインスタンスを作成します。問題は、このメソッドが -128 から 127 までの整数をキャッシュし (整数キャッシュの大きさは? )、 127 より大きい値の新しいインスタンスを作成するため、 == 比較は false を返すことです。
/**
* Returns an {@code Integer} instance representing the specified
* {@code int} value. If a new {@code Integer} instance is not
* required, this method should generally be used in preference to
* the constructor {@link #Integer(int)}, as this method is likely
* to yield significantly better space and time performance by
* caching frequently requested values.
*
* This method will always cache values in the range -128 to 127,
* inclusive, and may cache other values outside of this range.
*
* @param i an {@code int} value.
* @return an {@code Integer} instance representing {@code i}.
* @since 1.5
*/
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
a[0] の実際の型は整数なので、次のように記述できることに注意してください。
c=a[0].equals(b[0]);
これは true を返します。