java.nio.CharBuffer類的compact()方法用於壓縮給定的緩衝區。
緩衝區當前位置與其極限之間的值將複製到緩衝區的開頭。然後將緩衝區的位置設置為n + 1,並將其限製設置為其容量。緩衝區的位置設置為複製的浮點數。
用法:
public abstract CharBuffer compact()
返回值:此方法返回具有與此緩衝區相同內容的新CharBuffer。
異常:如果此緩衝區是隻讀的,則此方法引發ReadOnlyBufferException。
以下示例程序旨在說明compact()方法:
示例1:
// Java program to demonstrate
// compact() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the CharBuffer
int capacity = 10;
// Creating the CharBuffer
// creating object of Intbuffer
// and allocating size capacity
CharBuffer ic = CharBuffer.allocate(capacity);
// putting the value in Intbuffer
ic.put('a');
ic.put('b');
ic.put('c');
// print the CharBuffer
System.out.println("Original CharBuffer: "
+ Arrays.toString(ic.array()));
System.out.println("Position: " + ic.position());
System.out.println("limit: " + ic.limit());
// Creating a compacted CharBuffer of same CharBuffer
// using compact() method
CharBuffer CharBuffer = ic.compact();
// print the CharBuffer
System.out.println("\nCompacted CharBuffer: "
+ Arrays.toString(CharBuffer.array()));
System.out.println("Position: " + CharBuffer.position());
System.out.println("limit: " + CharBuffer.limit());
// putting the value in compacted Intbuffer
CharBuffer.put('g');
// print the CharBuffer
System.out.println("\nUpdated Compacted CharBuffer: "
+ Arrays.toString(CharBuffer.array()));
System.out.println("Position: " + CharBuffer.position());
System.out.println("limit: " + CharBuffer.limit());
}
}
輸出:
Original CharBuffer: [a, b, c, , , , , , , ] Position: 3 limit: 10 Compacted CharBuffer: [, , , , , , , , , ] Position: 7 limit: 10 Updated Compacted CharBuffer: [, , , , , , , g, , ] Position: 8 limit: 10
示例2:
// Java program to demonstrate
// compact() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the CharBuffer
int capacity = 10;
// Creating the CharBuffer
try {
// creating object of CharBuffer
// and allocating size capacity
CharBuffer cb = CharBuffer.allocate(capacity);
// putting the value in CharBuffer
cb.put('a');
cb.put('b');
cb.put('b');
cb.rewind();
// Creating a read-only copy of CharBuffer
// using asReadOnlyBuffer() method
CharBuffer cb1 = cb.asReadOnlyBuffer();
// print the ReadOnlyBuffer
System.out.print("ReadOnlyBuffer CharBuffer: ");
while (cb1.hasRemaining())
System.out.print(cb1.get() + ", ");
System.out.println("");
// print the Position of CharBuffer cb
System.out.println("\nPosition: " + cb.position());
// print the Limit of CharBuffer cb
System.out.println("\nlimit: " + cb.limit());
// Creating a compacted CharBuffer of same ReadOnlyBuffer
// using compact() method
System.out.println("\nTrying to compact the ReadOnlyBuffer cb1");
CharBuffer CharBuffer = cb1.compact();
}
catch (IllegalArgumentException e) {
System.out.println("Exception throws " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws " + e);
}
}
}
輸出:
ReadOnlyBuffer CharBuffer: a, b, b, , , , , , , , Position: 0 limit: 10 Trying to compact the ReadOnlyBuffer cb1 Exception throws java.nio.ReadOnlyBufferException
相關用法
- Java IntBuffer compact()用法及代碼示例
- Java LongBuffer compact()用法及代碼示例
- Java ByteBuffer compact()用法及代碼示例
- Java DoubleBuffer compact()用法及代碼示例
- Java ShortBuffer compact()用法及代碼示例
- Java FloatBuffer compact()用法及代碼示例
- Java CharBuffer equals()用法及代碼示例
- Java CharBuffer slice()用法及代碼示例
- Java CharBuffer wrap()用法及代碼示例
- Java CharBuffer asReadOnlyBuffer()用法及代碼示例
- Java CharBuffer duplicate()用法及代碼示例
- Java CharBuffer arrayOffset()用法及代碼示例
- Java CharBuffer hasArray()用法及代碼示例
- Java CharBuffer array()用法及代碼示例
- Java CharBuffer compareTo()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 CharBuffer compact() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。