The compareTo() method of the class java.nio.FloatBuffer is used to compare two buffers. Two buffers are compared by comparing their sequence of remaining elements lexicographically, without regard to the starting point of the buffers.
Note:
- Two floats are compared the same way as the
Float.compare()method. The only difference is that unlikeFloat.compare(), -0.0 and +0.0 are considered equal by theFloatBuffer.compareTo()method.Float.NaNis considered to be greater than all other float values by theFloatBuffer.compareTo()method.
The FloatBuffer.compareTo() method can be declared as:
buff1.compareTo(buff2);
buff1: The first buffer, to be compared to buff2.buff2: The second buffer, to be compared to buff1.The FloatBuffer.compareTo() method returns an integer such that:
buff1 is greater than buff2.buff1 is equal to buff2.buff1 is less than buff2.Consider the code snippet below, which demonstrates the use of the FloatBuffer.compareTo() method:
import java.nio.*;import java.util.*;public class main {public static void main(String[] args) {int n1 = 5;int n2 = 4;try {FloatBuffer buff1 = FloatBuffer.allocate(n1);buff1.put(1.5F);buff1.put(4.6F);System.out.println("buff1: " + Arrays.toString(buff1.array()));FloatBuffer buff2 = FloatBuffer.allocate(n2);buff2.put(3.6F);buff2.put(4.9F);System.out.println("buff2: " + Arrays.toString(buff2.array()));int foo = buff1.compareTo(buff2);System.out.println("\nbuff1 compareTo to buff2: " + foo);} catch (IllegalArgumentException e) {System.out.println("Error!!! IllegalArgumentException");} catch (ReadOnlyBufferException e) {System.out.println("Error!!! ReadOnlyBufferException");}}}
FloatBuffer buff1 is declared in line 8. Two floats are written to buff1 in lines 9-10.FloatBuffer buff2 is declared in line 13. Two floats are written to buff2 in lines 14-15.FloatBuffer.compareTo() method is used in line 18 to see if buff1 and buff2 are equal. The FloatBuffer.compareTo() method returns a positive integer, which means that buff1 is greater than buff2.Consider the code snippet below, which compares two equal buffers:
import java.nio.*;import java.util.*;public class main {public static void main(String[] args) {int n1 = 4;int n2 = 4;try {FloatBuffer buff1 = FloatBuffer.allocate(n1);buff1.put(1.5F);buff1.put(4.6F);System.out.println("buff1: " + Arrays.toString(buff1.array()));FloatBuffer buff2 = FloatBuffer.allocate(n2);buff2.put(3.6F);buff2.put(4.9F);System.out.println("buff2: " + Arrays.toString(buff2.array()));int foo = buff1.compareTo(buff2);System.out.println("\nbuff1 compareTo to buff2: " + foo);} catch (IllegalArgumentException e) {System.out.println("Error!!! IllegalArgumentException");} catch (ReadOnlyBufferException e) {System.out.println("Error!!! ReadOnlyBufferException");}}}
FloatBuffer buff1 is declared in line 8. Two floats are written to buff1 in lines 9-10.FloatBuffer buff2 is declared in line 13. Two floats are written to buff2 in lines 14-15.FloatBuffer.compareTo() method is used in line 18 to see if buff1 and buff2 are equal. The FloatBuffer.compareTo() method returns a positive integer, which means that buff1 is equal to buff2.Free Resources