Thanks A.jyotsna,
Can u tell me differnce between abstract class and interface
vikash
Answer Posted / jyotsna gupta
Abstract Class | Interfaces
|
1. Starts with a class keyword | Starts with interface
| keyword
2. abstract modifier has to be | No need to provide abstract
provided | modifier (100 % Abstract)
3. Not necessary to contain | All methods are by default
abstract methods, but if a | public and abstract, and
class has abstract method | all attributes are public
then class has 2 be abstract| static, and final (FIELDS)
4. Used for group of related | Any class can implement
classes only | interfaces
5. Single inheritance is | Multiple inheritance can
allowed only | be achieved
6. All class behaviours are | Cannot have constructors,
allowed, except creating | should initialise its
objects of abstract classes | Fields
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What state is a thread in when it is executing?
What is the difference between reader/writer and inputstream/output stream?
What are the differences between abstract class and interface?
What are the states of thread in java?
What is meant by method?
Why main method is static in java?
What are "class access modifiers" in Java?
What do you mean by compiler?
Explain java coding standards for classes or java coding conventions for classes?
Why synchronization is important?
How is abstraction implemented in java ?
Is math class static in java?
Can we use static class instead of singleton?
What is argument in java?
Can an interface be final?