我正在使用 aSparseIntArray
并且我对这种行为感到困惑:
public static SparseIntArray getArray()
{
SparseIntArray result = new SparseIntArray();
result.append(0, 99);
result.append(1, 988);
result.append(2, 636);
return result;
}
public static void testArray()
{
SparseIntArray first = getArray();
SparseIntArray second = getArray();
if( first.equals(second) )
{
Log.v(TAG,"first "+first.toString()+" == second "+second.toString());
}
else
{
Log.v(TAG,"first "+first.toString()+" != second "+second.toString());
}
}
输出:
11-06 14:53:15.011: V/fileName(6709): first {0=99, 1=988, 2=636} != second {0=99, 1=988, 2=636}
我知道在两个对象之间使用 == 会比较对象地址,在这种情况下是不同的,但是我在这里使用SparseIntArray.equals(Object other)
并且预期的结果并不意外。
我确信我可以推出自己的比较方法,但这听起来有点傻。Object.equals(Object other)
如果我们不能依赖它,那么拥有一个基类方法有什么意义呢?
有人可以指出任何错误吗?