Thursday, May 14, 2026
HomeLanguagesJavaOptionalInt of(int) method in Java with examples

OptionalInt of(int) method in Java with examples

The of(int) method help us to get an OptionalInt object which contains a int value which is passed as a parameter to this method.

Syntax:

public static OptionalInt of(int value)

Parameters: This method accepts a int value as parameter that will be set to the returned OptionalInt object.

Return value: This method returns an OptionalInt with the value present.

Below programs illustrate of(int) method:
Program 1:




// Java program to demonstrate
// OptionalInt.of(int) method
  
import java.util.OptionalInt;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a OptionalInt instance
        // using of() method
        OptionalInt opInt
            = OptionalInt.of(452);
  
        // Get value of this OptionalInt instance
        System.out.println("OptionalInt: "
                           + opInt);
    }
}


Output:

OptionalInt: OptionalInt[452]

Program 2:




// Java program to demonstrate
// OptionalInt.of(int) method
  
import java.util.OptionalInt;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a OptionalInt instance
        // using of() method
        OptionalInt opInt
            = OptionalInt.of(2149);
  
        // Get value of this OptionalInt instance
        System.out.println("OptionalInt: "
                           + opInt);
    }
}


Output:

OptionalInt: OptionalInt[2149]

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

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

1 COMMENT

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS