what is difference between interface and abstract class..?
Answer Posted / vinod kumar
Abstract: The members of abstract class is implemented
immediately in next class and the methods of abstract class
is blank.. as follows
abstract clas A
{
static void example();
static void ex1();
}
Interface: interface class can be implemented in other
program also....
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is the use of System class?
What is the difference between jdk, jre, and jvm?
What is identifier in java?
What are the elements of java?
What are recursive functions?
What are the characteristics of java?
What data type is true or false?
What is consumer in java?
Is java se open source?
Why is java not 100% pure oops?
What are mutable classes?
What are kinds of processors?
Do we have pointers in java?
What is difference between static class and singleton pattern?
What are the common uses of "this" keyword in java ?