Método DoubleBuffer compareTo() en Java con ejemplos

El método compareTo() de la clase java.nio.DoubleBuffer se utiliza para comparar un búfer con otro. Dos buffers dobles se comparan comparando lexicográficamente sus secuencias de elementos restantes, sin tener en cuenta la posición inicial de cada secuencia dentro de su correspondiente buffer. Los pares de elementos flotantes se comparan como si se invocara Double.compare(doble, doble), excepto que -0.0 y 0.0 se consideran iguales. Este método considera que Double.NaN es igual a sí mismo y mayor que todos los demás valores dobles (incluido Double.POSITIVE_INFINITY). Un búfer doble no es comparable a ningún otro tipo de objeto.

Sintaxis:

public int compareTo(DoubleBuffer that)

Parámetro: Este método toma un objeto de doble búfer como parámetro con el que se comparará este búfer.

Valor devuelto: este método devuelve un número entero negativo, cero o un número entero positivo, ya que este búfer es menor, igual o mayor que el búfer dado.

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

Ejemplos 1: Cuando ambos DoubleBuffer son iguales.

// Java program to demonstrate
// compareTo() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the db
        int capacity1 = 3;
  
        // Creating the DoubleBuffer
        try {
  
            // creating object of Doublebuffer db
            // and allocating size capacity
            DoubleBuffer db = DoubleBuffer.allocate(capacity1);
  
            // putting the value in db
            db.put(9.56);
            db.put(7.61);
            db.put(4.61);
  
            // revind the Double buffer
            db.rewind();
  
            // print the DoubleBuffer
            System.out.println("DoubleBuffer db: "
                               + Arrays.toString(db.array()));
  
            // creating object of Doublebuffer db1
            // and allocating size capacity
            DoubleBuffer db1 = DoubleBuffer.allocate(capacity1);
  
            // putting the value in db1
            db1.put(9.56);
            db1.put(7.61);
            db1.put(4.61);
  
            // revind the Double buffer
            db1.rewind();
  
            // print the DoubleBuffer
            System.out.println("DoubleBuffer db1: "
                               + Arrays.toString(db1.array()));
  
            // compare both buffer and store the value into integer
            int i = db.compareTo(db1);
  
            // if else condition
            if (i == 0)
                System.out.println("\nboth buffer are lexicographically equal");
            else if (i >= 0)
                System.out.println("\ndb is lexicographically greater than db1");
            else
                System.out.println("\ndb is lexicographically less than db1");
        }
  
        catch (IllegalArgumentException e) {
            System.out.println("Exception throws : " + e);
        }
  
        catch (ReadOnlyBufferException e) {
            System.out.println("Exception throws : " + e);
        }
    }
}
Producción:

DoubleBuffer db: [9.56, 7.61, 4.61]
DoubleBuffer db1: [9.56, 7.61, 4.61]

both buffer are lexicographically equal

Ejemplos 2: cuando este DoubleBuffer es mayor que el DoubleBuffer pasado

// Java program to demonstrate
// compareTo() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the db
        int capacity1 = 3;
  
        // Creating the DoubleBuffer
        try {
  
            // creating object of Doublebuffer db
            // and allocating size capacity
            DoubleBuffer db = DoubleBuffer.allocate(capacity1);
  
            // putting the value in db
            db.put(9.56);
            db.put(7.61);
            db.put(4.61);
  
            // revind the Double buffer
            db.rewind();
  
            // print the DoubleBuffer
            System.out.println("DoubleBuffer db: "
                               + Arrays.toString(db.array()));
  
            // creating object of Doublebuffer db1
            // and allocating size capacity
            DoubleBuffer db1 = DoubleBuffer.allocate(capacity1);
  
            // putting the value in db1
            db1.put(8.56);
            db1.put(7.61);
            db1.put(4.61);
  
            // revind the Double buffer
            db1.rewind();
  
            // print the DoubleBuffer
            System.out.println("DoubleBuffer db1: "
                               + Arrays.toString(db1.array()));
  
            // compare both buffer and store the value into integer
            int i = db.compareTo(db1);
  
            // if else condition
            if (i == 0)
                System.out.println("\nboth buffer are lexicographically equal");
            else if (i >= 0)
                System.out.println("\ndb is lexicographically greater than db1");
            else
                System.out.println("\ndb is lexicographically less than db1");
        }
  
        catch (IllegalArgumentException e) {
            System.out.println("Exception throws : " + e);
        }
  
        catch (ReadOnlyBufferException e) {
            System.out.println("Exception throws : " + e);
        }
    }
}
Producción:

DoubleBuffer db: [9.56, 7.61, 4.61]
DoubleBuffer db1: [8.56, 7.61, 4.61]

db is lexicographically greater than db1

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 *