function of extends and implements keywords?
Answers were Sorted based on User's Feedback
Answer / jitender arora
Extending means adding new method definitions. Implementing
means satisfying the existing interface contract by writing
the proscribed method bodies.
When you derive a class from a base class we say the
derived subclass extends the base class. An interface can
also extend another interface. In contrast, when a class
provides the methods (possibly abstract) necessary to
conform to some interface we say that class implements the
interface. Extending a class is closely related to
implementing an interface. A new class can extend at most
one superclass, but it may implement several interfaces.
In interface may extend several other interfaces (though a
class implements an interface). You sometimes do this to
give you a short same to stand for the requirement
implementing half a dozen related interfaces.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / mayur kumar
extends is used to inherite a class and implement is used
to inherit an interface.
| Is This Answer Correct ? | 0 Yes | 0 No |
To make an object to begin executing as a separate thread, what method is used?
diff vector arraylist
which of the following authentication is stronger than the others? a. Http Basic b. Http DIGEST c. Form based
How substring() method of string class create memory leaks?
Do you think that java should have had pointers?
Is “abc” a primitive value?
Difference between JRE and JVM?
3 Answers HeadStrong, Infotech,
i have a 1000 objects in data base i need to display those in jsp's how can i retrive those objects in jsp. (consider the performance issue)
What is threadfactory?
What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
life cycle of an applet?
Describe, in general, how java's garbage collector works?