Thursday, October 9, 2025
HomeLanguagesJavaClass cast() method in Java with Examples

Class cast() method in Java with Examples

The cast() method of java.lang.Class class is used to cast the specified object to the object of this class. The method returns the object after casting in the form of an object.

Syntax:

public T[] cast(Object obj)

Parameter: This method accepts a parameter obj which is the object to be cast upon

Return Value: This method returns the specified object after casting in the form of an object.

Exception: This method throws:

  • ClassCastException: if the object is not null and is not assignable to the type T.

Below programs demonstrate the cast() method.

Example 1:




// Java program to demonstrate
// cast() method
  
import java.util.*;
  
public class Test {
  
    public static Object obj;
  
    public static void main(String[] args)
        throws ClassNotFoundException
    {
  
        // returns the Class object for this class
        Class myClass = Class.forName("Test");
  
        System.out.println("Class represented by myClass: "
                           + myClass.toString());
  
        // Cast the object obj to object of myClass
        // using cast() method
        System.out.println("Object " + obj + " after cast "
                           + "upon to class Test: "
                           + myClass.cast(obj));
    }
}


Output:

Class represented by myClass: class Test
Object null after cast upon to class Test: null

Example 2:




// Java program to demonstrate
// cast() method
  
import java.util.*;
  
class Main {
  
    private static int obj = 10;
  
    public static void main(String[] args)
        throws ClassNotFoundException
    {
  
        try {
            // returns the Class object for this class
            Class myClass = Class.forName("Main");
  
            System.out.println("Class represented by myClass: "
                               + myClass.toString());
  
            // Cast the object obj to object of myClass
            // using cast() method
            System.out.println("Object " + obj + " after cast "
                               + "upon to class Test: "
                               + myClass.cast(obj));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

Class represented by myClass: class Main
java.lang.ClassCastException: Cannot cast java.lang.Integer to Main

Reference: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#cast-java.lang.Object-

RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11875 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS