OOPs Concepts
Programming and Technical
HR Interview
Interview
Difference between static and dynamic class loading.
Read Solution (Total 1)
-
- Static Class Loading: Creating objects and instance using new keyword is known as static class loading. The retrieval of class definition and instantiation of the object is done at compile time.
Dynamic Class Loading: Loading classes using Class.forName () method. Dynamic class loading is done when the name of the class is not known at compile time - 10 years agoHelpfull: Yes(1) No(0)
OOPs Concepts Other Question