Método DoubleBuffer duplicate() en Java con ejemplos

El método duplicate() de java.nio.DoubleBuffer Class se usa para crear un nuevo búfer flotante que comparte el contenido del búfer dado.

El contenido del nuevo búfer será el de este búfer. Los cambios en el contenido de este búfer serán visibles en el nuevo búfer y viceversa; los valores de posición, límite y marca de los dos búferes serán independientes.

Los valores de capacidad, límite, posición y marca del nuevo búfer serán idénticos a los de este búfer. El nuevo búfer será directo si, y solo si, este búfer es directo, y será de solo lectura si, y solo si, este búfer es de solo lectura.

Sintaxis:

public abstract DoubleBuffer duplicate()

Valor de retorno: este método devuelve el nuevo búfer doble que lleva el contenido del búfer doble anterior

A continuación se muestran los ejemplos para ilustrar el método duplicate():

Programa 1:

// Java program to demonstrate
// duplicate() method
// Using direct Doublebuffer
  
import java.nio.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the DoubleBuffer
        int capacity = 10;
  
        // Creating the DoubleBuffer
        try {
  
            // creating object of Doublebuffer
            // and allocating size capacity
            DoubleBuffer db1 = DoubleBuffer.allocate(capacity);
  
            // putting the value in Doublebuffer
            db1.put(8.56F);
            db1.put(2, 9.61F);
            db1.rewind();
  
            // print the Original DoubleBuffer
            System.out.println("Original DoubleBuffer:  "
                               + Arrays.toString(db1.array()));
  
            // Creating a duplicate copy of DoubleBuffer
            // using duplicate() method
            DoubleBuffer db2 = db1.duplicate();
  
            // print the duplicate copy of DoubleBuffer
            System.out.print("\nDuplicate DoubleBuffer: "
                             + Arrays.toString(db2.array()));
        }
  
        catch (IllegalArgumentException e) {
  
            System.out.println("IllegalArgumentException catched");
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("ReadOnlyBufferException catched");
        }
    }
}
Producción:

Original DoubleBuffer:  [8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]

Duplicate DoubleBuffer: [8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]

Ejemplo 2:

// Java program to demonstrate
// duplicate() method
// using read-onlyDoublebuffer
  
import java.nio.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the DoubleBuffer
        int capacity = 10;
  
        // Creating the DoubleBuffer
        try {
  
            // creating object of Doublebuffer
            // and allocating size capacity
            DoubleBuffer db1 = DoubleBuffer.allocate(capacity);
  
            // putting the value in Doublebuffer
            db1.put(8.56F);
            db1.put(2, 9.61F);
            db1.rewind();
  
            // print the Original DoubleBuffer
            System.out.println("Original DoubleBuffer:  "
                               + Arrays.toString(db1.array()));
  
            // Creating a read-only copy of DoubleBuffer
            // using asReadOnlyBuffer() method
            DoubleBuffer readonly = db1.asReadOnlyBuffer();
  
            // print the read-only copy of DoubleBuffer
            System.out.print("\nread-only DoubleBuffer:  ");
            while (readonly.hasRemaining())
                System.out.print(readonly.get() + ", ");
            System.out.println("");
  
            // Rewinding the readonly DoubleBuffer
            readonly.rewind();
  
            // Creating a duplicate copy of DoubleBuffer
            // using duplicate() method
            DoubleBuffer db2 = readonly.duplicate();
  
            // print the duplicate copy of DoubleBuffer
            System.out.print("\nduplicate copy of read-only DoubleBuffer:  ");
  
            while (db2.hasRemaining())
                System.out.print(db2.get() + ", ");
            System.out.println("");
        }
  
        catch (IllegalArgumentException e) {
  
            System.out.println("IllegalArgumentException catched");
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("ReadOnlyBufferException catched");
        }
    }
}
Producción:

Original DoubleBuffer:  [8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]

read-only DoubleBuffer:  8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 

duplicate copy of read-only DoubleBuffer:  8.5600004196167, 0.0, 9.609999656677246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,

Publicación traducida automáticamente

Artículo escrito por pawan_asipu 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 *