HashCode 계산 방법
1420 단어 JUnit
String
object is computed as s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
using
int
arithmetic, where s[i]
is the ith character of the string,
n
is the length of the string, and ^
indicates exponentiation. (The hash value of the empty string is zero.) Overrides:
hashCode() in
Object
Returns:
a hash code value for this object.
package com.datastruct.sort;
import junit.framework.TestCase;
public class AscIITest extends TestCase {
int hash=0;
int offset=0;
char[] value={'s','s'};
public void test(){
System.out.println(this.hashCode());
}
public int hashCode() {
int h = hash;
if (h == 0) {
int off = offset;
char val[] = value;
int len = value.length;
for (int i = 0; i < len; i++) {
h = 31*h + val[off++];
System.out.println(" "+(i+1)+" "+h);
}
hash = h;
}
return h;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
책 「테스트 구동 개발」을 사경하기 위한 환경 구축우선 사용할 수 없으면 시작되지 않는다. 나중에 점점 사용할 수 있게 될 것이다. 에서 Eclipse IDE for Java Developers를 다운로드하여 설치하십시오. 이제 첫 화면이 나온다. 시작 후 화면에서...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.