📜  Java中的缓冲区限制()方法与示例

📅  最后修改于: 2022-05-13 01:55:19.277000             🧑  作者: Mango

Java中的缓冲区限制()方法与示例

Java.nio.Buffer 类的limit()方法用于设置这个缓冲区的限制。如果头寸大于新限制,则将其设置为新限制。如果标记已定义且大于新限制,则将其丢弃。

句法:

public Buffer limit(int newLimit)

返回值:此方法返回此缓冲区。

以下是说明 limit() 方法的示例:

示例 1:

// Java program to demonstrate
// limit() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // defining and allocating ByteBuffer
        // using allocate() method
        ByteBuffer byteBuffer
            = ByteBuffer.allocate(4);
  
        // put byte value in byteBuffer
        // using put() method
        byteBuffer.put((byte)20);
        byteBuffer.put((byte)30);
  
        // Typecast byteBuffer to buffer
        Buffer buffer = (Buffer)byteBuffer;
  
        // print the byte buffer
        System.out.println("Buffer before operation: "
                           + Arrays.toString(
                                 (byte[])buffer.array())
                           + "\nPosition: "
                           + buffer.position()
                           + "\nLimit: "
                           + buffer.limit());
  
        // Limit the Buffer
        // using limit() method
        buffer.limit(1);
  
        // print the buffer
        System.out.println("\nBuffer after operation: "
                           + Arrays.toString(
                                 (byte[])buffer.array())
                           + "\nPosition: "
                           + buffer.position()
                           + "\nLimit: "
                           + buffer.limit());
    }
}
输出:
Buffer before operation: [20, 30, 0, 0]
Position: 2
Limit: 4

Buffer after operation: [20, 30, 0, 0]
Position: 1
Limit: 1

示例 2:

// Java program to demonstrate
// limit() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // defining and allocating ByteBuffer
        // using allocate() method
        ByteBuffer byteBuffer
            = ByteBuffer.allocate(5);
  
        // put byte value in byteBuffer
        // using put() method
        byteBuffer.put((byte)20);
        byteBuffer.put((byte)30);
        byteBuffer.put((byte)40);
  
        // Typecast byteBuffer to buffer
        Buffer buffer = (Buffer)byteBuffer;
  
        // mark will be going to discarded by limit()
        buffer.mark();
  
        // print the buffer
        System.out.println("Buffer before operation: "
                           + Arrays.toString(
                                 (byte[])buffer.array())
                           + "\nPosition: "
                           + buffer.position()
                           + "\nLimit: "
                           + buffer.limit());
  
        // Limit the Buffer
        // using limit() method
        buffer.limit(4);
  
        // print the buffer
        System.out.println("\nBuffer after operation: "
                           + Arrays.toString(
                                 (byte[])buffer.array())
                           + "\nPosition: "
                           + buffer.position()
                           + "\nLimit: "
                           + buffer.limit());
    }
}
输出:
Buffer before operation: [20, 30, 40, 0, 0]
Position: 3
Limit: 5

Buffer after operation: [20, 30, 40, 0, 0]
Position: 3
Limit: 4

参考: https://docs.oracle.com/javase/9/docs/api/ Java/nio/Buffer.html#limit-int-