What do you understand by soft reference?
No Answer is Posted For this Question
Be the First to Post Answer
Is a string literal?
Difference between class#getinstance() and new operator ?
What are void pointers?
Can an object?s finalize() method be invoked while it is reachable?
Why convert an applet to an application?
What must a class do to implement an interface in java programming?
If two threads have same priority which thread will be executed first ?
what release of java technology are currently available what do they contain?
Is it possible for yielded thread to get chance for its execution again ?
Hi Friends, can you explain instance in java. In general instance means "occurence of something" . In java what is instance.
What is meant by Java ?
I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }