Sunday, November 23, 2025
HomeLanguagesJavaLongBuffer limit() method in Java with Examples

LongBuffer limit() method in Java with Examples

The limit() method of java.nio.LongBuffer Class is used to modify this LongBuffer’s limit. This method takes the limit to be set as the parameter and sets that as the new limit of this Buffer. If the mark of this Buffer is already defined and is larger than the new specified limit, then this new limit is not set and discarded.

Syntax:

public final LongBuffer limit(int newLimit)

Parameter: The method takes one parameter newLimit of integer type which refers to the limit that is to be set as the new limit of the buffer.

Return Value: This method returns this buffer after setting the specified new limit as the new limit of this Buffer.

Below are the examples to illustrate the limit() method:

Examples 1:




// Java program to demonstrate
// limit() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // defining and allocating LongBuffer
        // using allocate() method
        LongBuffer longBuffer
            = LongBuffer.allocate(4);
  
        // put long value in longBuffer
        // using put() method
        longBuffer.put(20);
        longBuffer.put(30);
  
        // print the long buffer
        System.out.println(
            "LongBuffer before "
            + "setting buffer's limit: "
            + Arrays.toString(
                  longBuffer.array())
            + "\nPosition: "
            + longBuffer.position()
            + "\nLimit: "
            + longBuffer.limit());
  
        // Limit the longBuffer
        // using limit() method
        longBuffer.limit(1);
  
        // print the long buffer
        System.out.println(
            "\nLongBuffer after "
            + "setting buffer's limit: "
            + Arrays.toString(
                  longBuffer.array())
            + "\nPosition: "
            + longBuffer.position()
            + "\nLimit: "
            + longBuffer.limit());
    }
}


Output:

LongBuffer before setting buffer's limit: [20, 30, 0, 0]
Position: 2
Limit: 4

LongBuffer after setting buffer's limit: [20, 30, 0, 0]
Position: 1
Limit: 1

Examples 2:




// Java program to demonstrate
// limit() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // defining and allocating LongBuffer
        // using allocate() method
        LongBuffer longBuffer
            = LongBuffer.allocate(5);
  
        // put double value in LongBuffer
        // using put() method
        longBuffer.put(20);
        longBuffer.put(30);
        longBuffer.put(40);
  
        // mark will be going to
        // discarded by limit()
        longBuffer.mark();
  
        // print the long buffer
        System.out.println(
            "LongBuffer before "
            + "setting buffer's limit: "
            + Arrays.toString(
                  longBuffer.array())
            + "\nPosition: "
            + longBuffer.position()
            + "\nLimit: "
            + longBuffer.limit());
  
        // Limit the longBuffer
        // using limit() method
        longBuffer.limit(4);
  
        // print the long buffer
        System.out.println(
            "\nLongBuffer before "
            + "setting buffer's limit: "
            + Arrays.toString(
                  longBuffer.array())
            + "\nPosition: "
            + longBuffer.position()
            + "\nLimit: "
            + longBuffer.limit());
    }
}


Output:

LongBuffer before setting buffer's limit: [20, 30, 40, 0, 0]
Position: 3
Limit: 5

LongBuffer before setting buffer's limit: [20, 30, 40, 0, 0]
Position: 3
Limit: 4

Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/LongBuffer.html#rewind–

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS