Hi Every One I Have Small Doubt Please answer
This????????????????????????????
I Want to use AbstractList class
methods(java.util.AbstractList)
My Program is
import java.util.*;
class DemoOne extends AbstractList
{
public static void main(String[] args)
{
AbstractList a=new DemoOne();//This One is Correct??
DemoOne a1=new DemoOne();//This One is Correct?? Both Are
Not Working
System.out.println("Hello World!"+a);
System.out.println("Hello World!"+a1);
}
}
Error IS:
DemoOne.java:2: DemoOne is not abstract and does not
override abstract method get(int) in java.util.AbstractList
class DemoOne extends AbstractList
AnyOne can Please Provide The
Solution????????????????????????? Plzzzzzzz
Answer Posted / raghav
Bcoz ur class ( DemoOne ) is concrete class so u r forced to provide body to that methods that r unimplemented in java.util.AbstractList
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is main string [] args?
Why is boolean important?
Are arrays immutable in java?
What is time complexity algorithm?
What is tree in java?
What is jit and its use?
What is java util hashmap?
What is a conditional equation?
Can a class have 2 constructors?
What are the methods to rectify ambiguities in the interfaces in JAVA?
Can we overload the main() method?
What is a byte string?
Is array dynamic in java?
difference between byte stream class and character stream class?
Explain when we should make an instance variable private.