java.lang.Short.hashCode() 方法返回這個Short 的雜湊碼值。
以下是java.lang.Short.hashCode()方法的宣告
public int hashCode()
NA
此方法返回該物件的雜湊碼值。
NA
下面的例子顯示java.lang.Short.hashCode()方法的使用。
package com.yiibai; import java.lang.*; public class ShortDemo { public static void main(String[] args) { // create short object and assign value to it short shortNum1 = 150; Short ShortObj1 = new Short(shortNum1); // returns hashcode int hcode = ShortObj1.hashCode(); System.out.println("Hashcode for this Short ShortObj1 = " + hcode); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Hashcode for this Short ShortObj1 = 150