Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Design - Interview Questions and Answers for 'Static vs singleton' - 2 question(s) found - Order By Newest | ||||
| ||||
Ans. Still No in case we are making use of inheritance. we may have problem wherein we have program flow moving across common inherited method and specific methods of the derived class. call made to another static method in the parent class will only access the static class of the Parent class irrespective of the call from any of the derived class. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  static class   static vs singleton   inheritance | ||||
Related Questions | ||||
Which of the following do you think is the primary reason you would never use a static class even the application doesn't need multiple requests or threads ? a. Serialization b. Runtime Polymorphism c. Lazy Loading d. Memory | ||||
Ans. Runtime Polymorphism | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  static class   static vs singleton   java   oops   objects  Runtime Polymorphism | ||||
Related Questions | ||||
Why do we need Inner classes ? Cant we just work with outer classes wherever we implement Inner classes ? | ||||
Let's suppose we have an to destroy objects, Design a program to implement garbage collection ? | ||||
How can we create objects if we make the constructor private ? | ||||
Difference Between this() and super() ? | ||||
Please specify in what sequence the objects of following classes will be created ? Session , SessionFactory, Query , Configuration | ||||
Which interface provides the capability to store objects using a key-value pair? | ||||
What is an Object ? | ||||
How many SessionFactory and Session objects are created ? | ||||
Can we declare Entity class as final ? | ||||
What are stateless objects ? How are they different from immutable objects ? Which of these two is thread safe ? | ||||