How to Fix java.lang.classcastexception in Java?
Last Updated :
12 Dec, 2022
ClassCastException in Java occurs when we try to convert the data type of entry into another. This is related to the type conversion feature and data type conversion is successful only where a class extends a parent class and the child class is cast to its parent class.
Here we can consider parent class as vehicle and child class may be car, bike, cycle etc., Parent class as shape and child class may be 2d shapes or 3d shapes, etc.
Two different kinds of constructors available for ClassCastException.
- ClassCastException(): It is used to create an instance of the ClassCastException class.
- ClassCastException(String s): It is used to create an instance of the ClassCastException class, by accepting the specified string as a message.
Let us see in details
Java
import java.math.BigDecimal;
public class ClassCastExceptionExample {
public static void main(String[] args)
{
// Creating a BigDecimal object
Object sampleObject = new BigDecimal(10000000.45);
System.out.println(sampleObject);
}
}
Output10000000.4499999992549419403076171875
If we try to print this value by casting to different data type like String or Integer etc., we will be getting ClassCastException.
Java
import java.math.BigDecimal;
public class Main {
public static void main(String[] args)
{
// Creating a BigDecimal object
Object sampleObject = new BigDecimal(10000000.45);
// Trying to display the object by casting to String
// As the object is created as BigDecimal but tried
// to display by casting to String,
// ClassCastException is thrown
System.out.println((String)sampleObject);
}
}
Output :
Exception in thread "main" java.lang.ClassCastException: class java.math.BigDecimal cannot be cast to class java.lang.String (java.math.BigDecimal and java.lang.String are in module java.base of loader 'bootstrap')
at Main.main(Main.java:11)
We can fix the exception printing by means of converting the code in the below format:
Java
import java.math.BigDecimal;
public class ClassCastExceptionExample {
public static void main(String[] args)
{
// Creating a BigDecimal object
Object sampleObject = new BigDecimal(10000000.45);
// We can avoid ClassCastException by this way
System.out.println(String.valueOf(sampleObject));
}
}
Output10000000.4499999992549419403076171875
So, in any instances when we try to convert data type of object, we cannot directly downcast or upcast to a specified data type. Direct casting will not work and it throws ClassCastException. Instead, we can use
String.valueOf() method. It converts different types of values like int, long, boolean, character, float etc., into the string.
- public static String valueOf(boolean boolValue)
- public static String valueOf(char charValue)
- public static String valueOf(char[] charArrayValue)
- public static String valueOf(int intValue)
- public static String valueOf(long longValue)
- public static String valueOf(float floatValue)
- public static String valueOf(double doubleValue)
- public static String valueOf(Object objectValue)
are the different methods available and in our above example, the last method is used.
Between Parent and Child class. Example shows that the instance of the parent class cannot be cast to an instance of the child class.
Java
class Vehicle {
public Vehicle()
{
System.out.println(
"An example instance of the Vehicle class to proceed for showing ClassCastException");
}
}
final class Bike extends Vehicle {
public Bike()
{
super();
System.out.println(
"An example instance of the Bike class that extends Vehicle as parent class to proceed for showing ClassCastException");
}
}
public class ClassCastExceptionExample {
public static void main(String[] args)
{
Vehicle vehicle = new Vehicle();
Bike bike = new Bike();
Bike bike1 = new Vehicle();
// Check out for this statement. Tried to convert
// parent(vehicle) object to child object(bike).
// Here compiler error is thrown
bike = vehicle;
}
}
Compiler error :

In order to overcome Compile-time errors, we need to downcast explicitly. i.e. downcasting means the typecasting of a parent object to a child object. That means features of parent object lost and hence there is no implicit downcasting possible and hence we need to do explicitly as below way
Giving the snippet where the change requires. In the downcasting Explicit way
Java
// An easier way to understand Downcasting
class Vehicle {
String vehicleName;
// Method in parent class
void displayData()
{
System.out.println("From Vehicle class");
}
}
class Bike extends Vehicle {
double cost;
// Overriding the parent class method and we can
// additionally mention about the child class
@Override void displayData()
{
System.out.println("From bike class" + cost);
}
}
public class ClassCastExceptionExample {
public static void main(String[] args)
{
Vehicle vehicle = new Bike();
vehicle.vehicleName = "BMW";
// Downcasting Explicitly
Bike bike = (Bike)vehicle;
bike.cost = 1000000;
// Though vehiclename is not assigned, it takes BMW
// as it is
System.out.println(bike.vehicleName);
System.out.println(bike.cost);
bike.displayData();
}
}
OutputBMW
1000000.0
From bike class1000000.0
Upcasting implicit way
An example for upcasting of the child object to the parent object. It can be done implicitly. This facility gives us the flexibility to access the parent class members.
Java
// An easier way to understand Upcasting
class Vehicle {
String vehicleName;
// Method in parent class
void displayData()
{
System.out.println("From Vehicle class");
}
}
class Bike extends Vehicle {
double cost;
// Overriding the parent class method and we can
// additionally mention about the child class
@Override void displayData()
{
System.out.println("From bike class..." + cost);
}
}
public class ClassCastExceptionExample {
public static void main(String[] args)
{
// Upcasting
Vehicle vehicle = new Bike();
vehicle.vehicleName = "Harley-Davidson";
// vehicle.cost //not available as upcasting done
// but originally Vehicle class dont have cost
// attribute
System.out.println(vehicle.vehicleName);
vehicle.displayData(); // Hence here we will get
// output as 0.0
}
}
OutputHarley-Davidson
From bike class...0.0
Fixing ClassCastException in an upcasting way and at the same time, loss of data also occurs
Java
class Vehicle {
public Vehicle()
{
System.out.println(
"An example instance of the Vehicle class to proceed for showing ClassCast Exception");
}
public String display()
{
return "Vehicle class display method";
}
}
class Bike extends Vehicle {
public Bike()
{
super(); // Vehicle class constructor msg display as
// super() is nothing but calling parent
// method
System.out.println(
"An example instance of the Bike class that extends \nVehicle as parent class to proceed for showing ClassCast Exception");
}
public String display()
{
return "Bike class display method";
}
}
public class ClassCastExceptionExample {
public static void main(String[] args)
{
Vehicle vehicle = new Vehicle();
Bike bike = new Bike();
// But we can make bike point to vehicle, i.e.
// pointing child object to parent object This is an
// example for upcasting of child object to parent
// object. It can be done implicitly This facility
// gives us the flexibility to access the parent
// class members
vehicle = bike;
// As upcasted here, vehicle.display() will provide
// "Bike class display method" as output It has lost
// its parent properties as now vehicle is nothing
// but bike only
System.out.println(
"After upcasting bike(child) to vehicle(parent).."
+ vehicle.display());
}
}
OutputAn example instance of the Vehicle class to proceed for showing ClassCast Exception
An example instance of the Vehicle class to proceed for showing ClassCast Exception
An example instance of the Bike class that extends
Vehicle as parent class to proceed for showing ClassCast Exception
After upcasting bike(child) to vehicle(parent)..Bike class display method
Conclusion: By means of either upcasting or downcasting, we can overcome ClassCastException if we are following Parent-child relationships. String.valueOf() methods help to convert the different data type to String and in that way also we can overcome.
Similar Reads
Java Tutorial Java is a high-level, object-oriented programming language used to build web apps, mobile applications, and enterprise software systems. It is known for its Write Once, Run Anywhere capability, which means code written in Java can run on any device that supports the Java Virtual Machine (JVM).Java s
10 min read
Java Interview Questions and Answers Java is one of the most popular programming languages in the world, known for its versatility, portability, and wide range of applications. Java is the most used language in top companies such as Uber, Airbnb, Google, Netflix, Instagram, Spotify, Amazon, and many more because of its features and per
15+ min read
Java OOP(Object Oriented Programming) Concepts Java Object-Oriented Programming (OOPs) is a fundamental concept in Java that every developer must understand. It allows developers to structure code using classes and objects, making it more modular, reusable, and scalable.The core idea of OOPs is to bind data and the functions that operate on it,
13 min read
Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co
11 min read
Arrays in Java Arrays in Java are one of the most fundamental data structures that allow us to store multiple values of the same type in a single variable. They are useful for storing and managing collections of data. Arrays in Java are objects, which makes them work differently from arrays in C/C++ in terms of me
15+ min read
Inheritance in Java Java Inheritance is a fundamental concept in OOP(Object-Oriented Programming). It is the mechanism in Java by which one class is allowed to inherit the features(fields and methods) of another class. In Java, Inheritance means creating new classes based on existing ones. A class that inherits from an
13 min read
Collections in Java Any group of individual objects that are represented as a single unit is known as a Java Collection of Objects. In Java, a separate framework named the "Collection Framework" has been defined in JDK 1.2 which holds all the Java Collection Classes and Interface in it. In Java, the Collection interfac
15+ min read
Java Exception Handling Exception handling in Java allows developers to manage runtime errors effectively by using mechanisms like try-catch block, finally block, throwing Exceptions, Custom Exception handling, etc. An Exception is an unwanted or unexpected event that occurs during the execution of a program, i.e., at runt
10 min read
Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance
10 min read
Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact
12 min read