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
JavaBot
JavaBot10mo ago
This post has been reserved for your question.
Hey @Deorteur7! Please use /close or the Close 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.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
Unknown User
Unknown User10mo ago
Message Not Public
Sign In & Join Server To View
Deorteur7
Deorteur7OP10mo ago
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
Unknown User10mo ago
Message Not Public
Sign In & Join Server To View
JavaBot
JavaBot10mo ago
💤 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.
Deorteur7
Deorteur7OP10mo ago
i get it but now wt does this one mean ''Parent p = new Child()''
Kyo-chan
Kyo-chan10mo ago
..... 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.
JavaBot
JavaBot10mo ago
💤 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.

Did you find this page helpful?