These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }
No Answer is Posted For this Question
Be the First to Post Answer
How to avoid the runtime exception ?
What is synchronization and why is it important in java programming?
Where will it be used?
What do heavy weight components mean in java programming?
What is bufferedreader in java?
public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }
What is race condition ?? (Threading concept) TCS 2 sept10
Differentiate between overriding and overloading cases?
How do generics work in java?
While opening the file, what type of exceptions can be caught?
Is string thread safe in java?
Which are different kinds of source code?