Java FloatBuffer .compareTo (FloatBuffer that)
Syntax
FloatBuffer.compareTo(FloatBuffer that) has the following syntax.
public int compareTo(FloatBuffer that)
Example
In the following code shows how to use FloatBuffer.compareTo(FloatBuffer that) method.
import java.nio.FloatBuffer;
/* w w w . j a va2 s . c o m*/
public class Main {
public static void main(String[] args) {
FloatBuffer floatBuffer = FloatBuffer.allocate(10);
floatBuffer.put(0,1.23F);
floatBuffer.rewind();
FloatBuffer floatBuffer1 = floatBuffer.compact();
System.out.println(floatBuffer.compareTo(floatBuffer1));
}
}
The code above generates the following result.