What is stream api in java8?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between class#getinstance() and new operator ?
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 is casting in java programming?
Is string a datatype?
Relationship between an event-listener interface and an event-adapter class?
Is linkedlist thread safe in java?
Differentiate Vector and ArrayList?
Why string is not a wrapper class?
what is ennumaration?
What is a percentage sign called?
Can you access the private method from outside the class?
What is internal iteration in java se 8?