Thursday, October 2, 2025
HomeLanguagesJavaOptionalLong toString() method in Java with examples

OptionalLong toString() method in Java with examples

The toString() method help us to get a non-empty string representation of this OptionalLong.This non-empty string representation is suitable for debugging. The exact presentation format is unspecified and may vary between implementations and versions.

Syntax:

public String toString()

Parameters: This method accepts nothing.

Return value: This method returns the string representation of this instance.

Below programs illustrate toString() method:
Program 1:




// Java program to demonstrate
// OptionalLong.toString() method
  
import java.util.OptionalLong;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create a OptionalLong
        OptionalLong opLong
            = OptionalLong.of(21342536475643L);
  
        // get value using toString
        String value = opLong.toString();
  
        // print value
        System.out.print("Value: " + value);
    }
}


Output:

Value: OptionalLong[21342536475643]

Program 2:




// Java program to demonstrate
// OptionalLong.toString() method
  
import java.util.OptionalLong;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create a empty OptionalLong
        OptionalLong opLong
            = OptionalLong.empty();
  
        // get value using toString
        String value = opLong.toString();
  
        // print value
        System.out.print("Value: " + value);
    }
}


Output:

Value: OptionalLong.empty

References: https://docs.oracle.com/javase/10/docs/api/java/util/OptionalLong.html#toString()

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11926 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7079 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS