What is double checked locking in singleton?
No Answer is Posted For this Question
Be the First to Post Answer
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
What is autoboxing in java?
Is finalize() similar to a destructor?
What is the impact of declaring a method as final?
How do you remove duplicates in java?
Difference between Interface & Abstract class?
What is the use of static class?
What are the OOPS concepts in Java ?
Relationship between an event-listener interface and an event-adapter class?
What is treeset in java?
what is method reference in java 8?
How listener identify that the event came from a particular object?