Returning New Class Object in Abstract Class

In summary, the Animal class has two methods, reproduction(Animal otherAnimal) and reproducing(Animal otherAnimal). Reproduction determines if the animal can reproduce with another instance of an animal. Reproducing should return a new Animal of the same type if reproduction is possible, but I do not know how to do this because the class is abstract.
  • #1
Robben
166
2

Homework Statement



How can I return a new class object in an abstract class?

Homework Equations



None

The Attempt at a Solution



Suppose I have an abstract class named Animal (there are many other animal types that are made as classes). In this abstract class it has two methods, reproduction(Animal otherAnimal) and reproducing(Animal otherAnimal). Reproduction determines if the animal can reproduce with another instance of an animal. Reproducing should return a new Animal of the same type if reproduction is possible, but I do not know how to do this because the class is abstract.

Java:
public abstract class Animal{

    public abstract boolean reproduction(Animal otherAnimal);
   
    public Animal reproducing(Animal otherAnimal) {
        if (reproduction(otherAnimal) == true) {
            return ... //how can I return a new Animal of the same type?    
        }
        else {
            return null;       
        }
    }
}
 
Physics news on Phys.org
  • #2
You could modify the reproduction(otherAnimal) method to return the type of Animal instead of a boolean. Otherwise your reproducing() method would have to know about all of the different variations that could be produced by all animals.

For example, if a horse has its reproduction method called by another horse, you could return a horse. If it's called by a donkey then it would return a mule. If it is called by some other animal like a tiger, then return null. The reproduction method for a horse would just have to know about donkeys and other horses. Once you implement it, you'll see that the reproducing method isn't really necessary - just the reproduction() method.
 
  • #3
Borg said:
You could modify the reproduction(otherAnimal) method to return the type of Animal instead of a boolean. Otherwise your reproducing() method would have to know about all of the different variations that could be produced by all animals.

For example, if a horse has its reproduction method called by another horse, you could return a horse. If it's called by a donkey then it would return a mule. If it is called by some other animal like a tiger, then return null. The reproduction method for a horse would just have to know about donkeys and other horses. Once you implement it, you'll see that the reproducing method isn't really necessary - just the reproduction() method.

But I need these two methods. The reproduction method should only return whether or not two instances can reproduce and nothing more.
 
  • #4
Robben said:
But I need these two methods. The reproduction method should only return whether or not two instances can reproduce and nothing more.
Is reproducing() required by your instructor? What if you had reproduction() return null when a viable animal wasn't possible?
 
  • #5
Borg said:
Is reproducing() required by your instructor?

Yup.

What if you had reproduction() return null when a viable animal wasn't possible?

The details of reproduction with other animals will be written in different classes which will be a subclass of Animal so reproduction with two different animals that aren't possible should not occur.
 
  • #6
If you put reproducing() in the abstract Animal class, it's going to have to be able to return every type of possible animal. It would be better to implement it in the classes that implement Animal. Then a horse class won't have to know about tigers or bears.
 
  • #7
Borg said:
If you put reproducing() in the abstract Animal class, it's going to have to be able to return every type of possible animal. It would be better to implement it in the classes that implement Animal. Then a horse class won't have to know about tigers or bears.

So I should make the reproducing method abstract in the house class and implement it through my subclasses?

Also, I noticed that if I do "reproduction(otherAnimal) == true" I will have infinite reproducing. How can I go about fixing that?
 
  • #8
Robben said:
So I should make the reproducing method abstract in the house class and implement it through my subclasses?
Did you mean the Animal class? Then yes.
Robben said:
Also, I noticed that if I do "reproduction(otherAnimal) == true" I will have infinite reproducing. How can I go about fixing that?
Why do you think that? Maybe I'm not following what you're writing it at this point. Can you post your current code as we've discussed?
 
  • #9
Borg said:
Did you mean the Animal class? Then yes.

Opps, I meant Animal. Thank you!

Why do you think that? Maybe I'm not following what you're writing it at this point. Can you post your current code as we've discussed?

For example, if one animal can reproduce with another, I want to limit the chance of reproduction somehow such that I won't have infinite reproduction, e.g.

if ((((reproduction(otherAnimal) == true) == true) == true) == true).

Because I was told to never compare a boolean expression with a boolean literal.
 
  • #10
Robben said:
For example, if one animal can reproduce with another, I want to limit the chance of reproduction somehow such that I won't have infinite reproduction, e.g.

if ((((reproduction(otherAnimal) == true) == true) == true) == true).
I don't think that it will be a problem. For now, can you scope out what you think the reproduction(otherAnimal) method will look like if you implement it inside of a Horse class?
 
  • #11
Borg said:
I don't think that it will be a problem. For now, can you scope out what you think the reproduction(otherAnimal) method will look like if you implement it inside of a Horse class?

If I implement it in a subclass of a Animal which is called Horse then I will have to override the reproduction method to reproduce with, let's say with a class of Donkeys, but with no other subclass of Animal. And each subclass of Animal can only reproduce with animals that are predetermined.
 
  • #12
Robben said:
If I implement it in a subclass of a Animal which is called Horse then I will have to override the reproduction method to reproduce with, let's say with a class of Donkeys, but with no other subclass of Animal. And each subclass of Animal can only reproduce with animals that are predetermined.
The reproduction method takes an Animal class. You can pass any animal in. A donkey is just another type of animal. Also, keep in mind that the otherAnimal object isn't a donkey or a tiger or a bear. It's an Animal.
 
  • #13
Borg said:
The reproduction method takes an Animal class. You can pass any animal in. A donkey is just another type of animal. Also, keep in mind that the otherAnimal object isn't a donkey or a tiger or a bear. It's an Animal.

I see, thank you!
 
  • #14
Robben said:
I see, thank you!
You're welcome. I'll be interested to see the final result. :smile:
 
  • Like
Likes Robben
  • #15
Borg said:
You're welcome. I'll be interested to see the final result. :smile:

Will do! It might take me awhile because it's a long code (most likely tomorrow) but I definitely post it once I am done.
 

FAQ: Returning New Class Object in Abstract Class

What is an abstract class?

An abstract class is a class that cannot be instantiated, meaning that objects cannot be created from it. It serves as a template or blueprint for other classes to inherit from.

Can an abstract class have constructors?

Yes, an abstract class can have constructors, but they cannot be used to create objects. They are used to initialize variables and perform other tasks when a subclass is instantiated.

How do you return a new class object in an abstract class?

In order to return a new class object in an abstract class, you must first create a concrete subclass that extends the abstract class. Then, you can use the "new" keyword to create an object of the subclass and return it from the abstract class method.

What is the purpose of returning a new class object in an abstract class?

Returning a new class object in an abstract class allows for flexibility and customization in the creation of objects. It also allows for code reusability and simplifies the process of creating new objects.

Can you have multiple return statements in an abstract class method that returns a new class object?

Yes, you can have multiple return statements in an abstract class method that returns a new class object. The specific return statement that will be executed depends on the conditions specified in the method. However, it is recommended to have only one return statement for better readability and maintainability of the code.

Similar threads

Replies
12
Views
2K
Replies
5
Views
2K
Replies
4
Views
1K
Replies
1
Views
1K
Replies
1
Views
1K
Replies
6
Views
1K
Replies
1
Views
1K
Replies
2
Views
1K
Replies
2
Views
4K
Back
Top