How is down-casting possible in Java?

Yes, a variable can be downcast to its lower range substitute by casting. It may lead to data loss although. See the example below −

Example

public class Tester {
 
   public static void main(String[] args) {
      int a = 300;
 
      byte b = (byte)a;
 
      System.out.println(b);
   }  
}

Output

It will print output as −

44
Updated on: 2026-03-11T23:14:18+05:30

215 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements