What is a "subclass" in java?
I know about classes and methods, but I do not know about subclasses.
I will be more than happy to have a good explanation.
Thanks!
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
A subclass is a class that extends another class.
Then...
Will print:
This works because a subclass inherits the functionality of the class it extends. |
|||||||||
|
|
A subclass is something that extends the functionality of your existing class. I.e. Superclass - describes the catagory of objects:
Subclass1 - describes attributes of the individual Fruit objects:
Subclass2 - describes attributes of the individual Fruit objects:
The 'abstract' keyword in the superclass means that the class will only define the mandatory information that each subclass must have i.e. A piece of fruit must have a color so it is defines in the super class and all subclasses must 'inherit' that attribute and define the value that describes the specific object. Does that make sense? |
|||
|
|
|
If you have the following:
then |
||||
|
Think of a class as a description of the members of a set of things. All of the members of that set have common characteristics (methods and properties). A subclass is a class that describes the members of a particular subset of the original set. They share many of characteristics of the main class, but may have properties or methods that are unique to members of the subclass. You declare that one class is subclass of another via the "extends" keyword in Java.
B is a subclass of A. Instances of class B will automatically exhibit many of the same properties as instances of class A. This is the main concept of inheritance in Object-Oriented programming. |
|||||
|
|
A subclass in java, is a class that inherits from another class. Inheritance is a way for classes to add specialized behavior ontop of generalized behavior. This is often represented by the phrase "is a" relationship. For example, a |
|||
|
|
|
It is a class that extends another class. example taken from http://www.java-tips.org/java-se-tips/java.lang/what-is-a-java-subclass.html , Cat is a sub class of Animal :-)
|
|||
|
|
|
A sub class is a small file of a program that extends from some other class. For example you make a class about cars in general and have basic information that holds true for all cars with your constructors and stuff then you have a class that extends from that on a more specific car or line of cars that would have new variables/methods. I see you already have plenty of examples of code from above by the time I get to post this but I hope this description helps. |
|||
|
|