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 is ststic with example
How do you write a scanner class in java?
Why Do I Get A "permission Denied" Error After Downloading The .jnlp Java Launcher For The Vkvm?
Are arrays classes in java?
What are some characteristics of interference class?
Can a class have multiple superclasses?
What is purpose of keyword void?
What is the difference between integer parseint and integer valueof?
What is the use of a conditional inclusion statement in Java ?
can rmi and corba based applications interact ?
What restrictions are placed on method overloading in java programming?
How is a structure different from array ?
Is null a string or object in java?
How would you dynamically allocate memory to an array?
how to write a program for sending mails between client and server