What are unchecked exceptions in java?
No Answer is Posted For this Question
Be the First to Post Answer
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
Can static methods be inherited?
How to compare strings in java?
What is a wrapper method?
Where is singleton pattern used?
Difference between Interface & Abstract class?
How does thread synchronization occurs inside a monitor? What levels of synchronization can you apply?
How many bytes is a char in java?
What is the difference between Stream Reader and Stream Writer?
Explain about interrupt() method of thread class ?
Why are constructors used?
What is the point of polymorphism java?