- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java Object Creation of Inherited Class
In java constructor is something which is responsible for object creation of a particular class.Along with other functions of constructor it also instantiate the properties/instances of its class.In java by default super() method is used as first line of constructor of every class,here the purpose of this method is to invoke constructor of its parent class so that the properties of its parent get well instantiated before subclass inherits them and use.
The point that should remember here is when you create a object the constructor is called but it is not mandatory that whenever you called a constructor of a class an object of that class is created.As in above case the construcotr of parent is called from constructor of sub class but object of subclass is created only,as subclass is in is-a relation with its parent class.
Example
class InheritanceObjectCreationParent { public InheritanceObjectCreationParent() { System.out.println("parent class constructor called.."); System.out.println(this.getClass().getName()); //to know the class of which object is created. } } public class InheritanceObjectCreation extends InheritanceObjectCreationParent { public InheritanceObjectCreation() { //here we do not explicitly call super() method but at runtime complier call parent class constructor //by adding super() method at first line of this constructor. System.out.println("subclass constructor called.."); System.out.println(this.getClass().getName()); //to know the class of which object is created. } public static void main(String[] args) { InheritanceObjectCreation obj = new InheritanceObjectCreation(); // object creation. } }
Output
parent class constructor called.. InheritanceObjectCreation subclass constructor called.. InheritanceObjectCreation
- Related Articles
- C# Object Creation of Inherited Class
- Are the private variables and private methods of a parent class inherited by the child class in Java?
- Method of Object class in Java
- Object class in Java
- Object and class in Java
- Object class in java programming
- Is constructor inherited in Java?
- Get super class of an object in Java
- What all is inherited from parent class in C++?
- Are static methods inherited in Java?
- Can constructors be inherited in Java?
- Is final method inherited in Java?
- Listing the Modifiers of a Class Object in Java
- Does JVM creates object of Main class in Java?
- How static class Object is created without reference of outer class in java?
