java.lang.Integer.hashCode()のサンプル
サンプルコード
Integer cft = getInteger();
int hashVal_A = cft.hashCode();
int hashVal_B = Integer.hashCode(5678);
Coding Changes the World
サンプルコード
Integer cft = getInteger();
int hashVal_A = cft.hashCode();
int hashVal_B = Integer.hashCode(5678);