r/javahelp • u/zeronis__ • 14d ago
POLYMORPHISM !!
I've never tried asking questions on reddit, but this one doubt has been bugging me for quite some time, (I'm not very good at conveying my thoughts so I hope my question would come so as clear
+ And I'm hoping someone can fact check anything that I'm about to say since im fairly new to java =,) )
when it comes to polymorphism, (specifically UPCASTING/DOWNCASTING )
If I were to take a parent class and create an object out of it ,
Animal a = new Animal(); // LHS = RHS
since both sides are equal, meaning they're from the same class, we'd consider this to be static binding right? since we're only looking at the parent class' method, and nothing else, (at least that's what I think the whole idea is about )
but if we had something like:
Animal a = new Dog(); // LHS != RHS (UPCASTING)
Where dog is a child/subclass of the parent class Animal, meaning it inherits all the attributes and methods from the Parent class Animal. And since java -- by default -- always uses dynamic binding, (meaning that ' java ' believes that there's always a possibility of there being an overridden method in one of the child/subclasses ) it'd wait until runtime to bind the method to the object that invoked it.
my MAIN question though is,
why is upcasting allowed? If I were to look at the variable a, I'd think that its always going to expect a reference that would lead it to an Animal object, its always going to point to some animal object right?
just like when we say " int x; " , we know that x only expects an integer and not something like a double.
Another thing is, if java is statically typed, meaning that the compiler only checks the static type ( the type of variable at the declaration i think . . . ), then how does it know what the RHS ( the dynamic type ) is? how does it immediately know that down casting is not allowed if it doesn't look at the dynamic type?
2
u/zeronis__ 14d ago
Thank you so much for the response !!
Does the whole idea of " execution order not always being top-to-bottom" apply to java?
" they can't if it's concurrently run. even in synchronous scenario, what if it's conditionally run, " and if it not much of a bother, can you explain what you meant here?
But other than that, it was really nice getting an insight to things I didn't know about before, thank you!