Answer Posted / naresh
/**
* Returns the <code>Class</code> object associated with
the class or
* interface with the given string name. Invoking this
method is
* equivalent to:
*
* <blockquote><pre>
* Class.forName(className, true, currentLoader)
* </pre></blockquote>
*
* where <code>currentLoader</code> denotes the defining
class loader of
* the current class.
*
* <p> For example, the following code fragment returns the
* runtime <code>Class</code> descriptor for the class named
* <code>java.lang.Thread</code>:
*
* <blockquote><pre>
* Class t = Class.forName("java.lang.Thread")
* </pre></blockquote>
* <p>
* A call to <tt>forName("X")</tt> causes the class named
* <tt>X</tt> to be initialized.
*
* @param className the fully qualified name of
the desired class.
* @return the <code>Class</code> object for the
class with the
* specified name.
* @exception LinkageError if the linkage fails
* @exception ExceptionInInitializerError if the
initialization provoked
* by this method fails
* @exception ClassNotFoundException if the class cannot
be located
*/
public static Class<?> forName(String className)
throws ClassNotFoundException {
return forName0(className, true,
ClassLoader.getCallerClassLoader());
}
Source: Source code copied from Class class of JDK 1.6.
Hope this would be useful.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is chat area? Explain.
cud u help me ... i am struggling with this question... to find all the subsets of a given set for ex.... a,,b,c shud give all the subsets.... i gt the program in c bt nt able to get it in java..... help needed ..
Why does the option tag render selected=selected instead of just selected?
what is a non-repeatable read?
Why do I get a duplicate name error when loading a jar file?
How are the elements of a borderlayout organized?
How are commas used in the intialization and iteration parts of a for statement?
What is Remote Server?
What are the benefits of detached objects?
What’s jboss jbpm?
Can we sent objects using Sockets?
What is abstract schema?
whats is mean by tiles in struts
What happens when a thread cannot acquire a lock on an object?
What class is the top of the awt event hierarchy?