Saturday, July 4, 2026
HomeLanguagesJavaOptionalInt toString() method in Java with examples

OptionalInt toString() method in Java with examples

The toString() method help us to get a non-empty string representation of this OptionalInt.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
// OptionalInt.toString() method
  
import java.util.OptionalInt;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create a OptionalInt
        OptionalInt opInt
            = OptionalInt.of(452146);
  
        // get value using toString
        String value = opInt.toString();
  
        // print value
        System.out.println("String Representation: "
                           + value);
    }
}


Output:

String Representation: OptionalInt[452146]

Program 2:




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


Output:

String Representation: OptionalInt.empty

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

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6967 POSTS0 COMMENTS