Java Vector hashCode()
[Java Vector] Java Vector
hashCode() Java Vector AbstractList Vector
HashMap HashSet Java
Vector hashCode()
public int hashCode()
Vector int
Vector hashCode() AbstractList
- 1
- Vector
- null 0
public int hashCode() {
int hashCode = 1;
for (E e : this)
hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
return hashCode;
}
int hashCode = 1;
for (E e : this)
hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
return hashCode;
}
- 31 31 31*i (i
Web Proxy Viewer | New URL | Original Page