What is dot operator?
No Answer is Posted For this Question
Be the First to Post Answer
How do you print array in java?
When do you call copy constructor?
0 Answers Tavant Technologies, Virtusa,
what is optional in java 8?
When is the finalize() called? What is the purpose of finalization?
hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class
What are the methods used to implement for the key object in the hash map?
What is a void return type?
What is a java string?
What is stack class in java?
who can we create the object of a class? in how many ways we can create it (max 5)
What exactly is java?
class A { class B { psvm(String args[]) { } } } if the prg saved in A.java whats the o/p?