我想調用使用反射的方法。 我調用的方法不是靜態的,而是在我調用它的同一個類中。 的簡化版本我的代碼: public class Test {
public static void main(String[] args) {
Test instance = new Test();
if (args.length > 0) {
instance.doWork(
import java.lang.*;
public class firstclass
{
public static void main(String[] args)
{ ClassLoader classLoader = firstclass.class.getClassLoader();
System.out.println("class A is called ..."