what is difference between abstract and interface?
can i give real time example for the two topics?
Answer Posted / pawan v. tak
abstract class cantains implemented as well as non
implemented methods.The non implemented methods are called
as abstract methods.if we do not provide the
implementations of all the methods of the abstract class
the class that extends this class should be declared as
abstract.
And interface contains only abstract methods, i.e no method
implementaion is there in interface.In interface all data
members are public final and static means they wont be
changed and can be called by using classname and "."
operator. If you need to change your design, make it an
interface.
| Is This Answer Correct ? | 17 Yes | 4 No |
Post New Answer View All Answers
What are the different approaches to implement a function to generate a random number?
Can each java object keep track of all the threads that want to exclusively access it?
Why do we need singleton class?
Explain, java is compatible with all servers but not all browsers?
What is an example of declaration?
how to deploy tomcatserver to weblogic server? write d following steps?
Why main function is static?
What is the old name of java?
What is mean by exception?
What checkbox method allows you to tell if a checkbox is checked?
Explain the JDB in depth & command line.
Can inner class final?
What is the purpose of default constructor?
What is the tradeoff between using an unordered array versus an ordered array?
What is lastindexof in java?