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 are memory considerations of jsp compares to other web components?

0 Answers   TCS,


What is servlet preinitialization?

3 Answers   iFlex,


whats is statement and procedure

0 Answers   TCS,


What is the difference between java class and bean?

0 Answers  


Is System.err.println(""Statement"); is execute the output on console . Example: System.err.println("Hello JAVA");

8 Answers  






What is a session? Can you share a session object between different theads?

0 Answers  


What are different types of layout managers in java.awt package?

3 Answers   Android, CA,


whats is mean by filter?

1 Answers   SolutionNET,


What is preemptive and Non-preemptive Time Scheduling?

6 Answers   Cognizant,


what is meant by JRMP?

0 Answers  


If I define a method in JSP scriplet <%..%>, where will it go after translation into a servlet?

8 Answers   HeadStrong,


Which characters may be used as the second character of an identifier, but not as the first character of an identifier?

0 Answers  


Categories