In this tutorial, we will see how to compare a short buffer with another short buffer.
ShortBuffer API:
The java.nio.ShortBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static ShortBuffer | allocate( int capacity) | The allocate(..) method allocate a short buffer of given capacity. |
| int | compareTo(ShortBuffer buffer) | The compareTo(...) method returns 0, -1 or 1. It means, this buffer is equal, less and greater than to another buffer. |
| abstract ShortBuffer | put(short s) | The put(..) method write a given short value at the current position. |
import java.nio.*;
|
| C:\>java CompareToShortBuffer This short buffer is greater than to other short buffer. Both short buffer are equal. This short buffer is less than to other short buffer. |