In this tutorial, we will check int buffer is equal to another buffer or not.
IntBuffer API:
The java.nioIntBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static IntBuffer | allocate(int capacity) | The allocate(..)method allocate a new int buffer. |
| boolean | equals(object obj) | The equals() method tells this buffer is equals or not to another object. If another buffer is not int buffer method returns false. |
| abstract IntBuffer | put(int i) | The put(..)method write a given int value at current position. |
import java.nio.*;
|
| C:\l>java
EqualDemo Not equal Equal Not equal |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.