FloatBuffer put() methods in Java with Examples
Last Updated :
06 Dec, 2018
put(float f)
The
put(float f) method of
java.nio.FloatBuffer Class is used to write the given float into the newly created float buffer at the current position, and then increments the position.
Syntax :
public abstract FloatBuffer put(float f)
Parameters: This method takes the float value
f as a parameter which is to be written in float buffer.
Return Value: This method returns this buffer, in which the float value is inserted.
Exception: This method throws the following exceptions:
- BufferOverflowException- If this buffer's current position is not smaller than its limit
- ReadOnlyBufferException- If this buffer is read-only
Below are the examples to illustrate the put(float f) method:
Example 1:
Java
// Java program to demonstrate
// put() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the FloatBuffer
int capacity = 3;
// Creating the FloatBuffer
try {
// creating object of floatbuffer
// and allocating size capacity
FloatBuffer fb = FloatBuffer.allocate(capacity);
// putting the value in floatbuffer using put() method
fb.put(8.56F);
fb.put(9.61F);
fb.put(7.86F);
fb.rewind();
// print the FloatBuffer
System.out.println("Original FloatBuffer: "
+ Arrays.toString(fb.array()));
}
catch (BufferOverflowException e) {
System.out.println("Exception throws : " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws : " + e);
}
}
}
Output:
Original FloatBuffer: [8.56, 9.61, 7.86]
Example 2: To demonstrate BufferOverflowException.
Java
// Java program to demonstrate
// put() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the FloatBuffer
int capacity = 3;
// Creating the FloatBuffer
try {
// creating object of floatbuffer
// and allocating size capacity
FloatBuffer fb = FloatBuffer.allocate(capacity);
// putting the value in floatbuffer using put() method
fb.put(8.56F);
fb.put(9.61F);
fb.put(7.86F);
System.out.println("Trying to put the float at the "
+ "position more than its limit");
fb.put(7.86F);
// rewind the floatbuffer
fb.rewind();
// print the FloatBuffer
System.out.println("Original FloatBuffer: "
+ Arrays.toString(fb.array()));
}
catch (BufferOverflowException e) {
System.out.println("Exception throws : " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws : " + e);
}
}
}
Output:
Trying to put the float at the position more than its limit
Exception throws : java.nio.BufferOverflowException
Examples 3: To demonstrate ReadOnlyBufferException.
Java
// Java program to demonstrate
// put() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the FloatBuffer
int capacity = 3;
// Creating the FloatBuffer
try {
// creating object of floatbuffer
// and allocating size capacity using allocate() method
FloatBuffer fb = FloatBuffer.allocate(capacity);
// Creating a read-only copy of FloatBuffer
// using asReadOnlyBuffer() method
FloatBuffer fb1 = fb.asReadOnlyBuffer();
System.out.println("Trying to put the float value"
+ " in read only buffer");
// putting the value in readonly floatbuffer
// using put() method
fb1.put(8.56F);
}
catch (BufferOverflowException e) {
System.out.println("Exception throws : " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws : " + e);
}
}
}
Output:
Trying to put the float value in read only buffer
Exception throws : java.nio.ReadOnlyBufferException
put(int index, float f)
The put(int index, float f) method of java.nio.FloatBuffer Class is used to write the given float into the buffer at the given index.
Syntax:
public abstract FloatBuffer put(int index, float f)
Parameters: This method takes the following arguments as a parameter:
- index: The index at which the float will be written
- f: The float value to be written
Return Value: This method returns the this buffer.
Exception: This method throws the following exception:
- IndexOutOfBoundsException- If index is negative or not smaller than the buffer's limit
- ReadOnlyBufferException- If this buffer is read-only
Below are the examples to illustrate the put(int index, float f) method:
Example 1:
Java
// Java program to demonstrate
// put() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the FloatBuffer
int capacity = 3;
// Creating the FloatBuffer
try {
// creating object of floatbuffer
// and allocating size capacity
FloatBuffer fb = FloatBuffer.allocate(capacity);
// putting the value in floatbuffer using put() at index 0
fb.put(0, 8.56F);
// putting the value in floatbuffer using put() at index 2
fb.put(2, 9.61F);
// putting the value in floatbuffer using put() at index 1
fb.put(1, 7.86F);
// rewinding the floatbuffer
fb.rewind();
// print the FloatBuffer
System.out.println("Original FloatBuffer: "
+ Arrays.toString(fb.array()));
}
catch (IndexOutOfBoundsException e) {
System.out.println("Exception throws : " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws : " + e);
}
}
}
Output:
Original FloatBuffer: [8.56, 7.86, 9.61]
Example 2: To demonstrate IndexOutOfBoundsException.
Java
// Java program to demonstrate
// put() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the FloatBuffer
int capacity = 3;
// Creating the FloatBuffer
try {
// creating object of floatbuffer
// and allocating size capacity
FloatBuffer fb = FloatBuffer.allocate(capacity);
// putting the value in floatbuffer
// using put() at index 0
fb.put(0, 8.56F);
// putting the value in floatbuffer
// using put() at index 2
fb.put(2, 9.61F);
// putting the value in floatbuffer
// using put() at index -1
System.out.println("Trying to put the value"
+ " at the negative index");
fb.put(-1, 7.86F);
}
catch (IndexOutOfBoundsException e) {
System.out.println("Exception throws : " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws : " + e);
}
}
}
Output:
Trying to put the value at the negative index
Exception throws : java.lang.IndexOutOfBoundsException
Example 3: To demonstrate ReadOnlyBufferException.
Java
// Java program to demonstrate
// put() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the FloatBuffer
int capacity = 3;
// Creating the FloatBuffer
try {
// creating object of floatbuffer
// and allocating size capacity using allocate() method
FloatBuffer fb = FloatBuffer.allocate(capacity);
// Creating a read-only copy of FloatBuffer
// using asReadOnlyBuffer() method
FloatBuffer fb1 = fb.asReadOnlyBuffer();
System.out.println("Trying to put the float value"
+ " in read only buffer");
// putting the value in readonly floatbuffer
// using put() method
fb1.put(0, 8.56F);
}
catch (BufferOverflowException e) {
System.out.println("Exception throws : " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws : " + e);
}
}
}
Output:
Trying to put the float value in read only buffer
Exception throws : java.nio.ReadOnlyBufferException
Similar Reads
FloatBuffer get() methods in Java with Examples
get() The get() method of java.nio.FloatBuffer Class is used to reads the float at the given buffer's current position, and then increments the position. Syntax : public abstract float get() Return Value: This method returns the float value at the buffer's current position. Throws: This method throw
5 min read
FloatBuffer flip() methods in Java with Examples
The flip() method of java.nio.FloatBuffer Class is used to flip this buffer. By flipping this buffer, it meant that the buffer will be trimmed to the current position and then the position will be changed to zero. During this process, if any mark is there on the buffer, then that mark will be automa
2 min read
FloatBuffer slice() method in Java with Examples
The slice() method of java.nio.FloatBuffer Class is used to creates a new float buffer whose content is a shared subsequence of the given buffer's content.The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, a
3 min read
FloatBuffer wrap() method in Java with Examples
wrap(float[] array) The wrap() method of java.nio.FloatBuffer Class is used to wraps a float array into a buffer. The new buffer will be backed by the given float array; that is, modifications to the buffer will cause the array to be modified and vice versa. The new buffer's capacity and limit will
4 min read
FloatBuffer equals() method in Java with Examples
The equals() method of java.nio.FloatBuffer Class is used to check whether or not the given buffer is equal to another object. Two float buffers are equal if, and only if, They have the same element type, They have the same number of remaining elements, and The two sequences of remaining elements, c
4 min read
FloatBuffer compact() method in Java With Examples
The compact() method of java.nio.FloatBuffer Class is used to compact the given buffer. The values between the buffer's current position and its limit are copied to the beginning of the buffer. The buffer's position is then set to n+1 and its limit is set to its capacity. The buffer's position is se
3 min read
FloatBuffer allocate() method in Java With Examples
The allocate() method of java.nio.FloatBuffer Class is used to allocate a new float buffer next to the existing buffer. The new buffer's position will be zero. Its limit will be its capacity. Its mark will be undefined. And each of its elements will be initialized to zero. It will have a backing arr
2 min read
FloatBuffer hasArray() method in Java with Examples
The hasArray() method of java.nio.FloatBuffer class is used to ensure whether or not the given buffer is backed by an accessible float array. It returns true if there is an accessible backing array to this buffer, else it returns false. If this method returns true, then the array() and arrayOffset()
2 min read
FloatBuffer duplicate() method in Java with Examples
The duplicate() method of java.nio.FloatBuffer Class is used to Create a new float buffer that shares the given buffer's content. The content of the new buffer will be that of this buffer. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position,
3 min read
FloatBuffer compareTo() method in Java With Examples
The compareTo() method of java.nio.FloatBuffer class is used to compare one buffer to another. Two float buffers are compared by comparing their sequences of remaining elements lexicographically, without regard to the starting position of each sequence within its corresponding buffer. Pairs of float
4 min read