Can we create object of inner class in java?
No Answer is Posted For this Question
Be the First to Post Answer
Explain java coding standards for constants?
Which methods are used during serialization and deserialization process?
This is related to threads. I have a class with synchronized method m1(). Can I create different instances of this class and execute the m1() for different threads?
Can list be final in java?
What is concurrent hashmap and its features?
Can a method be overloaded based on different return type but same argument type?
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }
What is the purpose of default constructor?
How to initialize an Applet ?
I need to know about complete topic in java's collections i with an examples
what is optional in java 8?
Can we override constructor?