What is the intersection and union methods?
No Answer is Posted For this Question
Be the First to Post Answer
These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }
What is a condition in programming?
why interaction with server using javascript is difficult
What are the different ways of implementing thread? Which one is more advantageous?
Where local and global variables are stored?
How can you make sure that your singleton class will always return single instance in multi-threaded environment?
What is unmodifiable list in java?
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
What are static blocks in java ?
How will you compute size of a structure?
Can we access instance variables within static methods ?
what is use of marker interface? give me good example?