whats is mean by class.forName()
whats the return type of class
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
How to send a request to garbage collector?
How to determine SGA site?
Hello, I'm java developer. My skill is programming with java,jsp, struts, struts2+spring, hibernate, eclipse, tomcat, mysql,Oracle,Middlegen and other open source technology. I'm interest work any web base project that use my ability above. The thing is that I have never got any chance to work in this field though i am very much comfort with my skills. So if any body want me then i will happily join you. Also I have also some of my friends if you. If you interest to outsource any project to me then also you are welcome. you can reach me by email at me4bangalore@yahoo.in
What is the purpose of the notify() method?
If I wanted to use a solarisui for just a jtabbedpane, and the metal ui for everything else, how would I do that?
What is JNI?
What are the various thread priorities?
What do you know about seam?
whats is statement and procedure
Which javutil classes and interfaces support event handling?
What is deadlock?
What must a class do to implement an interface?