whats is mean by class.forName()
whats the return type of class

Answers were Sorted based on User's Feedback



whats is mean by class.forName() whats the return type of class..

Answer / jaspal

Class.forName() method is used to load the class in a memory
at runtime. Assume we have a class - aa.bb.DemoClass, then
the method looks like:
Class.forName("aa.bb.DemoClass");

Its return type is a Class object, i.e.
Class classObject = Class.forName("aa.bb.DemoClass");

Now, to create an instance of this class, use
Object object = classObject.newInstance();

Is This Answer Correct ?    26 Yes 0 No

whats is mean by class.forName() whats the return type of class..

Answer / shic kumar

class.forName() is used to load the class at run time that
is also called dynamic loading
this mehod is also used to load the driver for database
connectivity like
class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
here this method is used for loadig jdbcodbc driver

Is This Answer Correct ?    16 Yes 5 No

whats is mean by class.forName() whats the return type of class..

Answer / garima

Class.forName() is other way to create an object other
than new.This Returns class object assosiated with class or
interface with specified name.For example,
Class t=Class.forName("java.lang.Thread");return runtime
class descriptor for class named java.lang.Thread

Is This Answer Correct ?    5 Yes 1 No

whats is mean by class.forName() whats the return type of class..

Answer / siva

class.forName() is used to load the class at run time.

return type is Class object which represents the class
named by the argument.

Is This Answer Correct ?    2 Yes 0 No

whats is mean by class.forName() whats the return type of class..

Answer / uday

Class.forName() is other way to initialize the object .and
it returns the java.lang.Class

Is This Answer Correct ?    4 Yes 6 No

whats is mean by class.forName() whats the return type of class..

Answer / q

eee

Is This Answer Correct ?    3 Yes 8 No

Post New Answer

More Advanced Java Interview Questions

What is metaspace?

0 Answers  


What method MUST be implemented by all threads?

1 Answers  


What is the difference between Super and This Keyword?

4 Answers   HCL, TCS,


What is a thread?

3 Answers  


What is scalable, portability in the view of J2EE?

0 Answers  






Name the eight primitive java types.

0 Answers  


Explain the steps in details to load the server object dynamically?

0 Answers  


What is Connection Pooling?

1 Answers   Enteg Technologies, Infosys, Polaris,


What are synchronized methods and synchronized statements?

2 Answers   Adobe,


What is the difference between RMI and Corba?

0 Answers   Infotech,


Define prototype?

0 Answers  


What are the benefits of detached objects?

0 Answers  


Categories