当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ByteBuffer hashCode()用法及代码示例


java.nio.ByteBuffer类的hashCode()方法用于返回此缓冲区的当前哈希码。
字节缓冲区的哈希码仅取决于其剩余元素;也就是说,从position()到(包括)limit()处的元素– 1。
因为缓冲区哈希码是content-dependent,所以不建议将缓冲区用作哈希映射或类似数据结构中的键,除非已知缓冲区的内容不会改变。

用法:

public int hashCode()

返回值:此方法返回此缓冲区的当前哈希码。


下面是说明hashCode()方法的示例:

范例1:

// Java program to demonstrate 
// getInt() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
        // creating object of ByteBuffer 
        // and allocating size capacity 
        ByteBuffer bb = ByteBuffer.allocate(12); 
  
        // putting the int value in the bytebuffer 
        bb.asIntBuffer() 
            .put(10) 
            .put(20) 
            .put(30); 
  
        // rewind the Bytebuffer 
        bb.rewind(); 
  
        // print the ByteBuffer 
        System.out.println("Original ByteBuffer: "); 
        for (int i = 1; i <= 3; i++) 
            System.out.print(bb.getInt() + " "); 
  
        // rewind the Bytebuffer 
        bb.rewind(); 
  
        // Reads the Int at this buffer's current position 
        // using getInt() method 
        int value = bb.hashCode(); 
  
        // print the int value 
        System.out.println("\n\nByte Value: " + value); 
    } 
}
输出:
Original ByteBuffer: 
10 20 30 

Byte Value: -219122491

范例2:

// Java program to demonstrate 
// getInt() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
        // creating object of ByteBuffer 
        // and allocating size capacity 
        ByteBuffer bb = ByteBuffer.allocate(12); 
  
        // Reads the Int at this buffer's current position 
        // using getInt() method 
        int value = bb.hashCode(); 
  
        // print the int value 
        System.out.println("Byte Value: " + value); 
    } 
}
输出:
Byte Value: -293403007

参考: https://docs.oracle.com/javase/9/docs/api/java/nio/ByteBuffer.html#hashCode–



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 ByteBuffer hashCode() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。