1.

What does the Class.forName("MyClass") do?

Answer»

Class.forName("MyClass")

  • Loads the class MyClass.

  • Execute any static block code of MyClass.

  • Returns an instance of MyClass.



Discussion

No Comment Found