Java
Programming and Technical
Programming
Technical
Q. Difference between static and dynamic class loading.
A. Static class loading: The process of loading a class using new operator is called static class loading. Dynamic class loading: The process of loading a class at runtime is called dynamic class loading. Dynamic class loading can be done by using Class.forName()newInstance()
Read Solution (Total 0)
Java Other Question