Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Multilated Inheritance

  1. #1
    Junior Member
    Join Date
    Aug 2024
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Red face Multilated Inheritance

    (code=Java)Given a parent class Animal with properties as blood type,animal type and subclass as Fish,Reptile ,Bird
    {Class Animal)
    Properties:Height,Weight,Animal type,blood type
    Subclass:Class Reptile with properties:dryskin,Backbone,soft shelled egg
    Subclass:Class Crocodile with properties:Hard shelled eggs
    Subclass:Class Eel with properties release electric charge
    Subclass:Class Eagle
    Add ShowInfo()to every class ,how do I outline in properties in toString()method in code setting

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,096
    Thanks
    65
    Thanked 2,715 Times in 2,665 Posts

    Default Re: Multilated Inheritance

    Please make a simple, complete example and post it here so I can see what you are trying to do.

    Be sure to wrap your code with code tags:

    [code]
    **YOUR CODE GOES HERE**
    [/code]

    to get highlighting and preserve formatting.

    BTW What is Multilated Inheritance?
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Inheritance
    By anthony.aa86 in forum What's Wrong With My Code?
    Replies: 1
    Last Post: December 28th, 2013, 09:27 AM
  2. Inheritance[HELP!]
    By cjasonpogi in forum What's Wrong With My Code?
    Replies: 1
    Last Post: November 22nd, 2013, 02:56 AM
  3. hi need help with inheritance
    By fredsilvester93 in forum Java Theory & Questions
    Replies: 2
    Last Post: July 19th, 2012, 04:01 PM
  4. Inheritance
    By lewzax in forum Object Oriented Programming
    Replies: 4
    Last Post: July 8th, 2011, 01:51 PM
  5. inheritance help
    By justin3492 in forum Object Oriented Programming
    Replies: 3
    Last Post: September 30th, 2010, 07:45 PM