What is a default constructor and also define copy contrucyor?
No Answer is Posted For this Question
Be the First to Post Answer
How many bits does a boolean take?
What does g mean in regex?
Is 0 true or false in java?
What are the three parts of a lambda expression? What is the type of lambda expression?
What is string pool in java?
What is the default access specifier for variables and methods of a class?
Can we restart a thread already started in java?
explain local datetime api in java8?
why pointer is not used in java?
What is left shift and right shift?
we r taking <load-on-startup>0</load-on-startup> <load-on-startup>1</load-on-startup> in deployment descripter for loading servlets like serv1 N serv2? so 'll it take serv1 or serv2
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