Saturday, November 22, 2025
HomeLanguagesJavaOptional toString() method in Java with examples

Optional toString() method in Java with examples

The toString() method of java.util.Optional class in Java is used to get the string representation of this Optional instance.

Syntax:

public String toString()

Parameters: This method accepts nothing.

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

Below programs illustrate toString() method:
Program 1:




// Java program to demonstrate
// Optional.toString() method
  
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create a Optional
        Optional<Integer> op
            = Optional.of(452146);
  
        // get value using toString
        String value = op.toString();
  
        // print value
        System.out.println("String Representation: "
                           + value);
    }
}


Output:

String Representation: Optional[452146]

Program 2:




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


Output:

String Representation: Optional.empty

References: https://docs.oracle.com/javase/9/docs/api/java/util/Optional.html#toString–

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

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS