1.

Distinguish Between Static Loading And Dynamic Class Loading?

Answer»

Static loading – Classes are loaded STATICALLY with operator “new”.
Dynamic class loading – It is a TECHNIQUE for programmatically INVOKING the functions of a class loader at RUN time.
The syntax isClass.forName (Test className);

Static loading – Classes are loaded statically with operator “new”.
Dynamic class loading – It is a technique for programmatically invoking the functions of a class loader at run time.
The syntax isClass.forName (Test className);



Discussion

No Comment Found