Método ShortBuffer compact() en Java con ejemplos

El método compact() de java.nio.ShortBuffer Class se usa para compactar el búfer dado. Los cortos entre la posición actual del búfer y su límite, si lo hay, se copian al comienzo del búfer. Es decir, la posición corta en el índice p = position() se copia en el índice cero, la posición corta en el índice p + 1 se copia en el índice uno, y así sucesivamente hasta que la posición corta en el índice limit() – 1 se copia en el índice n = límite() – 1 – pág. Luego, la posición del búfer se establece en n+1 y su límite se establece en su capacidad. La marca, si está definida, se descarta. La posición del búfer se establece en el número de cortos copiados, en lugar de cero, de modo que una invocación de este método puede ser seguida inmediatamente por una invocación de otro método put relativo.

Sintaxis :

public abstract ShortBuffer compact()

Valor de retorno : este método devuelve el nuevo ShortBuffer con el mismo contenido que el de este búfer.

Excepción : este método lanza la excepción ReadOnlyBufferException , si este búfer es de solo lectura.

El siguiente programa ilustra el método compact() :

Programa 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 ShortBuffer
        int capacity = 10;
  
        // Creating the ShortBuffer
  
        // creating object of shortbuffer
        // and allocating size capacity
        ShortBuffer sb = ShortBuffer.allocate(capacity);
  
        // putting the value in shortbuffer
        sb.put((short)856);
        sb.put((short)961);
        sb.put((short)54);
  
        // print the ShortBuffer
        System.out.println("Original ShortBuffer: "
                           + Arrays.toString(sb.array()));
  
        System.out.println("Position: " + sb.position());
  
        System.out.println("limit: " + sb.limit());
  
        // Creating a compacted ShortBuffer of same ShortBuffer
        // using compact() method
        ShortBuffer shortBuffer = sb.compact();
  
        // print the ShortBuffer
        System.out.println("\nCompacted ShortBuffer: "
                           + Arrays.toString(shortBuffer.array()));
  
        System.out.println("Position: " + shortBuffer.position());
  
        System.out.println("limit: " + shortBuffer.limit());
  
        // putting the value in compacted shortbuffer
        shortBuffer.put((short)961);
  
        // print the ShortBuffer
        System.out.println("\nUpdated Compacted ShortBuffer: "
                           + Arrays.toString(shortBuffer.array()));
        System.out.println("Position: " + shortBuffer.position());
        System.out.println("limit: " + shortBuffer.limit());
    }
}
Producción:

Original ShortBuffer: [856, 961, 54, 0, 0, 0, 0, 0, 0, 0]
Position: 3
limit: 10

Compacted ShortBuffer: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Position: 7
limit: 10

Updated Compacted ShortBuffer: [0, 0, 0, 0, 0, 0, 0, 961, 0, 0]
Position: 8
limit: 10

Programa 2: Para demostrar ReadOnlyBufferException.

// 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 ShortBuffer
        int capacity = 10;
  
        // Creating the ShortBuffer
        try {
  
            // creating object of ShortBuffer
            // and allocating size capacity
            ShortBuffer sb = ShortBuffer.allocate(capacity);
  
            // putting the value in floatbuffer
            sb.put((short)856);
            sb.put((short)961);
            sb.put((short)6010);
            sb.rewind();
  
            // Creating a read-only copy of ShortBuffer
            // using asReadOnlyBuffer() method
            ShortBuffer sb1 = sb.asReadOnlyBuffer();
  
            // print the ReadOnlyBuffer
            System.out.print("ReadOnlyBuffer ShortBuffer: ");
            while (sb1.hasRemaining())
                System.out.print(sb1.get() + ", ");
            System.out.println("");
  
            // print the Position of ShortBuffer sb
            System.out.println("\nPosition: " + sb.position());
  
            // print the Limit of ShortBuffer fb
            System.out.println("\nlimit: " + sb.limit());
  
            // Creating a compacted ShortBuffer of same ReadOnlyBuffer
            // using compact() method
            System.out.println("\nTrying to compact the ReadOnlyBuffer sb1");
  
            ShortBuffer floatBuffer = sb1.compact();
        }
  
        catch (IllegalArgumentException e) {
            System.out.println("Exception throws " + e);
        }
  
        catch (ReadOnlyBufferException e) {
            System.out.println("Exception throws " + e);
        }
    }
}
Producción:

ReadOnlyBuffer ShortBuffer: 856, 961, 6010, 0, 0, 0, 0, 0, 0, 0, 

Position: 0

limit: 10

Trying to compact the ReadOnlyBuffer sb1
Exception throws java.nio.ReadOnlyBufferException

Publicación traducida automáticamente

Artículo escrito por IshwarGupta y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *