Java IntBuffer.compareTo(IntBuffer that)
Syntax
IntBuffer.compareTo(IntBuffer that) has the following syntax.
public int compareTo(IntBuffer that)
Example
In the following code shows how to use IntBuffer.compareTo(IntBuffer that) method.
//w ww . jav a 2 s. co m
import java.nio.IntBuffer;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
IntBuffer intBuffer = IntBuffer.allocate(10);
intBuffer.put(100);
intBuffer.rewind();
IntBuffer intBuffer2 = intBuffer.compact();
System.out.println(intBuffer2.compareTo(intBuffer2));
}
}
The code above generates the following result.