java.nio.ByteBuffer類的limit()方法用於設置此緩衝區的限製。如果位置大於新限製,則將其設置為新限製。如果標記已定義且大於新限製,則將其丟棄。
用法:
public ByteBuffer limit(int newLimit)
返回值:此方法返回此緩衝區。
下麵是說明limit()方法的示例:
範例1:
// Java program to demonstrate
// compact() 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);
// print the byte buffer
System.out.println("ByteBuffer before compact:"
+ Arrays.toString(byteBuffer.array())
+ "\nPosition:" + byteBuffer.position()
+ "\nLimit:" + byteBuffer.limit());
// Limit the byteBuffer
// using limit() method
byteBuffer.limit(1);
// print the byte buffer
System.out.println("\nByteBuffer after compact:"
+ Arrays.toString(byteBuffer.array())
+ "\nPosition:" + byteBuffer.position()
+ "\nLimit:" + byteBuffer.limit());
}
}
輸出:
ByteBuffer before compact:[20, 30, 0, 0] Position:2 Limit:4 ByteBuffer after compact:[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);
// mark will be going to discarded by limit()
byteBuffer.mark();
// print the byte buffer
System.out.println("ByteBuffer before compact:"
+ Arrays.toString(byteBuffer.array())
+ "\nPosition:" + byteBuffer.position()
+ "\nLimit:" + byteBuffer.limit());
// Limit the byteBuffer
// using limit() method
byteBuffer.limit(4);
// print the byte buffer
System.out.println("\nByteBuffer after compact:"
+ Arrays.toString(byteBuffer.array())
+ "\nPosition:" + byteBuffer.position()
+ "\nLimit:" + byteBuffer.limit());
}
}
輸出:
ByteBuffer before compact:[20, 30, 40, 0, 0] Position:3 Limit:5 ByteBuffer after compact:[20, 30, 40, 0, 0] Position:3 Limit:4
參考:https://docs.oracle.com/javase/9/docs/api/java/nio/ByteBuffer.html#limit-int-
相關用法
- Java ByteBuffer put()方法用法及代碼示例
- Java Buffer limit()用法及代碼示例
- Java CharBuffer limit()用法及代碼示例
- Java DoubleBuffer limit()用法及代碼示例
- Java ByteBuffer putFloat()用法及代碼示例
- Java ByteBuffer putChar()用法及代碼示例
- Java ByteBuffer putDouble()用法及代碼示例
- Java ByteBuffer reset()用法及代碼示例
- Java ByteBuffer putInt()用法及代碼示例
- Java ByteBuffer putShort()用法及代碼示例
- Java ByteBuffer rewind()用法及代碼示例
- Java ByteBuffer wrap()用法及代碼示例
- Java ByteBuffer position()用法及代碼示例
- Java ByteBuffer putLong()用法及代碼示例
- Java ByteBuffer isDirect()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ByteBuffer limit() methods in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。