help with oops
I'm a beginner and facing problem understanding some basic concepts of objects inheritance polymorphism, can anyone help me in a voice call?? pleasee
8 Replies
⌛
This post has been reserved for your question.
Hey @Deorteur7! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
Unknown User•10mo ago
Message Not Public
Sign In & Join Server To View
in the syntax of creating a object 'animal a = new animal()' , what is the structure of each element, wht are they used for ?
'Parent p = new Child()', can u explain the meaning and what is it's use
Unknown User•10mo ago
Message Not Public
Sign In & Join Server To View
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.
i get it but now wt does this one mean
''Parent p = new Child()''
..... Pretty much the same thing.
Declaration of a variable named p and type Parent.
On the same line this variable is initialized. The value it's initiliazed with is an instance of class Child, by calling the constructor new Child()
It has the implicit requirement that class Child is a subtype of type Parent (probably a class too, so Child is a descendant class of Parent, probably a direct subclass that extends Parent.)
The names strongly suggested that requirement.
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.