public class Demo { public static void main( String[] args ) { ClassA a = new ClassA(); ClassB b = new ClassB(); a = b; // Automatic conversion } }