InterviewSolution
Saved Bookmarks
| 1. |
What Is Class.forname() Does And How It Is Useful? |
|
Answer» It LOADS the class into the CLASSLOADER. It returns the Class. USING that you can get the instance ( “class-instance”.newInstance() ). It loads the class into the ClassLoader. It returns the Class. Using that you can get the instance ( “class-instance”.newInstance() ). |
|