How to allocate a short buffer in java.


 

How to allocate a short buffer in java.

In this tutorial, you will see how to allocate a short buffer in java.

In this tutorial, you will see how to allocate a short buffer in java.

How to allocate a short buffer in java.

 In this tutorial, we will see how to allocate a new 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. 

Buffer API:

The java.nio.Buffer class extends java.lang.Objact class. It provides the following methods:

Return type Method Description
int limit() The limit() method returns the limit of short buffer.
int position() The position() method returns the position of short buffer.
final int capacity() The capacity() method returns the capacity of associated short buffer.

Code

import java.nio.*;
import java.nio.ShortBuffer;
public class AllocateShort  {
  public static final int capacity=256;
  public static void main(String[] arg) {      
ShortBuffer shortBuff = ShortBuffer.allocate(capacity);
    shortBuff.put((short565);
    shortBuff.flip();
    System.out.println("Limit of short buffer : "
                                  
+ shortBuff.limit());
    System.out.println("capacity of short buffer : " 
                              + shortBuff.capacity());
    while (shortBuff.hasRemaining()) 
      {
      System.out.println("Content in shortbuffer : " 
                                 
+ shortBuff.get());
    }
  }
}

Output

C:\>java AllocateShort
Limit of short buffer : 1
capacity of short buffer : 256
Content in shortbuffer :  565

Download this code

Ads