El método order() de la clase java.nio.DoubleBuffer se usa para obtener el ByteOrder de esta instancia de DoubleBuffer.
Sintaxis:
public abstract ByteOrder order()
Valor devuelto: este método devuelve el orden de bytes de este búfer.
A continuación se muestran los ejemplos para ilustrar el método order():
Ejemplos 1:
Java
// Java program to demonstrate // order() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // creating object of DoubleBuffer // and allocating size capacity DoubleBuffer db = DoubleBuffer.allocate(4); // put the double value // in the Doublebuffer db.put(10.5) .put(20.5) .put(30.5) .put(40.5); // rewind the Doublebuffer db.rewind(); // Retrieve the ByteOrder // using order() method ByteOrder order = db.order(); // print the double buffer and order System.out.println("DoubleBuffer is : " + Arrays.toString( db.array()) + "\nOrder: " + order); } }
Producción:
DoubleBuffer is : [10.5, 20.5, 30.5, 40.5] Order: LITTLE_ENDIAN
Ejemplos 2:
Java
// Java program to demonstrate // order() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // creating object of DoubleBuffer // and allocating size capacity DoubleBuffer db = DoubleBuffer.allocate(4); // Retrieve the ByteOrder // using order() method ByteOrder order = db.order(); // print the double buffer and order System.out.println("DoubleBuffer is : " + Arrays.toString( db.array()) + "\nOrder: " + order); } }
Producción:
DoubleBuffer is : [0.0, 0.0, 0.0, 0.0] Order: LITTLE_ENDIAN
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/DoubleBuffer.html#order–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA