使用 Java 进行动态类加载

发布于 2024-12-01 22:24:29 字数 181 浏览 1 评论 0原文

我想动态加载一个实现接口的具体类。输入:具体类名。

我需要在这个具体类中调用一个方法,也就是说,我需要设置:

MyInterface myclass = new concreteClassName();
myclass.function();

我怎样才能实现这个?

I want to dynamically load a concrete class which implements an interface. Input: concrete class name.

I need to call a method in this concrete class, that is, I'll need to set:

MyInterface myclass = new concreteClassName();
myclass.function();

How can I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

清晰传感 2024-12-08 22:24:29

看看 类。 forName(字符串)

    String str = "Test$B"; //your full class name here instead of Test$B
    A clazz = null; //change A to be your interface
    try { 
    clazz = (A)Class.forName(str).newInstance(); //change A to be your interface

    } catch (Exception e) { 
        //TODO: handle exceptions
        e.printStackTrace();
    }
    if (clazz != null)  {
        clazz.foo();
    }

have a look at Class.forName(String)

    String str = "Test$B"; //your full class name here instead of Test$B
    A clazz = null; //change A to be your interface
    try { 
    clazz = (A)Class.forName(str).newInstance(); //change A to be your interface

    } catch (Exception e) { 
        //TODO: handle exceptions
        e.printStackTrace();
    }
    if (clazz != null)  {
        clazz.foo();
    }
迷荒 2024-12-08 22:24:29

您是否检查过

try {
     // Load class
     Class<?> cls = Class.forName("my.package.ConcreteClass");

     // Instantiate object from class using default constructor
     my.package.ConcreteClass obj = (my.package.ConcreteClass) cls.newInstance(); 

     // Execute method on it
     obj.myMethod(); 
} catch (Exception e) {
    throw new RuntimeException("Could not instantiate class", e);
}

Class#forNameClass#newInstance 各自的 javadoc 条目?

Have you checked out

try {
     // Load class
     Class<?> cls = Class.forName("my.package.ConcreteClass");

     // Instantiate object from class using default constructor
     my.package.ConcreteClass obj = (my.package.ConcreteClass) cls.newInstance(); 

     // Execute method on it
     obj.myMethod(); 
} catch (Exception e) {
    throw new RuntimeException("Could not instantiate class", e);
}

and the respective javadoc entries for Class#forName and Class#newInstance?

墨落画卷 2024-12-08 22:24:29

您应该实现自己的ClassLoader

You should implement your own ClassLoader.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文