Java 中的 Class.forName() 和 Class.forName().newInstance()
本文将解释 Java 中的 Class.forName()
和 Class.forName().newInstance()
之间的区别。
Java 中的 Class.forName()
Class.forName()
返回所提供名称的类的类型。它将返回对类的引用并加载所有可访问的静态块,而不是实例方法。
java.lang.Class
类的 forName()
函数用于检索具有提供的类名的此类的实例。类名作为 string
参数提供。
如果找不到该类,则抛出 ClassNotFoundException
。
语法:
public static Class<S> forName(String suppliedclass) throws ClassNotFoundException
例子:
forName()
技术在下面的应用程序中进行了演示。
- 在
Main
类中创建一个Class
类型变量,名为exampleclass
,并将Class.ForName
的参数设置为 ("java.lang.String"
)。 - 使用下面的代码行,你可能会看到
Class
的名称。
System.out.print(" The Example Class represents a class named : "+ exampleclass.toString());
源代码:
public class ForNameExample {
public static void main(String[] args) throws ClassNotFoundException
{
Class exampleclass = Class.forName("java.lang.String");
System.out.print("The Example Class represents a class named : "+ exampleclass.toString());
}
}
输出:
The Example Class represents a class named : class java.lang.String
Java 中的 Class.forName().newInstance()
newInstance()
返回类的实例。然后这将返回该类的一个对象,我们可以使用它来调用实例方法。
java.lang
包中的 Class
类的 forName()
方法返回参数的 Class
对象,然后由类加载器加载。类的 newInstance()
函数然后返回一个新实例。
每当你希望加载类、执行其静态块并访问其非静态部分时,你都需要一个实例,这将需要以下内容。
语法:
Class.forName("class").newInstance();
例子:
创建一个名为 MultiplyExample
的类并初始化两个 integer
类型变量,名为 z
和 x
。此类通过将两个提供的数字相乘来返回一个实例。
class MultiplyExample
{
int Multiply(int z,int x)
{
return(z*x);
}
}
现在创建一个名为 m
的 MultiplyExample
对象,然后应用 Class.forName().newInstance()
。
MultiplyExample m = (MultiplyExample)Class.forName("MultiplyExample").newInstance();
最后,使用传递给 Multiply
函数的对象显示结果。
System.out.println("After Multiply result is "+ m.Multiply(7, 5));
在这种情况下,Class.forName("MultiplyExample")
生成 MultiplyExample.class
,newInstance()
生成 Multiply
类实例。简而言之,它与执行 new MultiplyExample()
相同。
源代码:
class MultiplyExample
{
int Multiply(int z,int x)
{
return(z*x);
}
}
class Main
{
public static void main(String args[]) throws Exception
{
MultiplyExample m = (MultiplyExample)Class.forName("MultiplyExample").newInstance();
System.out.println("After Multiply result is "+ m.Multiply(7, 5));
}
}
输出:
After Multiply result is 35
I have been working as a Flutter app developer for a year now. Firebase and SQLite have been crucial in the development of my android apps. I have experience with C#, Windows Form Based C#, C, Java, PHP on WampServer, and HTML/CSS on MYSQL, and I have authored articles on their theory and issue solving. I'm a senior in an undergraduate program for a bachelor's degree in Information Technology.
LinkedIn