Type Casting & Data Hiding
- Sree Hari
- Apr 7, 2017
- 1 min read
Previous Blog: Interface
Type Casting:
Upcasting
Java-ல Child class (sub type) object-அ instantiate பண்ணி, Parent (super type) class reference-க்கு assign பண்ணலாம்.
Example,
Person person = new Man( );
Or
Person person = new Woman( );
மேல சொன்ன statements-லாம் valid statements. இந்த technique-க்கு பெயர் தான் Upcasting.
Interview Question:
What is downcasting in Java?
Parent class (super type) object-அ, Child class (sub type) reference-க்கு assign பண்ணனா அது Downcasting.
.............
コメント