Java-lang-byte-hashcode

提供:Dev Guides
移動先:案内検索

Java.lang.Byte.hashCode()メソッド

説明

  • java.lang.Byte.hashCode()*は、このByteのハッシュコードを返します。これは、intValue()を呼び出した結果と同じです。

宣言

以下は* java.lang.Byte.hashCode()*メソッドの宣言です

public int hashCode()

オーバーライド

クラス Object のhashCode

パラメーター

NA

戻り値

このメソッドは、このバイトのハッシュコード値を返します。

例外

NA

次の例は、lang.Byte.hashCode()メソッドの使用方法を示しています。

package com.finddevguides;

import java.lang.*;

public class ByteDemo {

   public static void main(String[] args) {

     //create 2 Byte objects b1, b2
      Byte b1, b2;

     //create 2 int i1, i2
      int i1, i2;

     //assign values to b1, b2
      b1 = new Byte("100");
      b2 = new Byte("-100");

     //assign hash code of b1, b2 to i1, i2
      i1 = b1.hashCode();
      i2 = b2.hashCode();

      String str1 = "Hashcode of Byte " + b1 + " is " + i1;
      String str2 = "Hashcode of Byte " + b2 + " is " + i2;

     //print i1, i2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

上記のプログラムをコンパイルして実行すると、次の結果が生成されます-

Hashcode of Byte 100 is 100
Hashcode of Byte -100 is -100