A静的内部クラスは、外部クラスのインスタンスを必要とせずにインスタンス化できます。一般に、内部クラスはネストされたクラスの一部であり、Java では非静的ネストされたクラスと呼ばれます。内部クラスのタイプには、メンバー内部クラス、匿名内部クラス、およびローカル内部クラスが含まれます。
InnerClass.class.newInstance()を使用して、リフレクションを使用して静的内部クラスをインスタンス化できます。非静的内部クラスをインスタンス化するために外部クラスのインスタンスが必要な場合は、new演算子の前にそれを指定できます。
import java.lang.reflect.*; public class InnerclassWithReflectionTest { public static void main(String args[]) { try { InnerClass inner = (InnerClass) InnerClass.class.newInstance(); inner.test(); } catch(Exception e) { e.printStackTrace(); } } // inner class static class InnerClass { public void test() { System.out.println("Welcome to TutorialsPoint !!!"); } } }
Welcome to TutorialsPoint !!!
以上がJavaでリフレクションを使用して静的内部クラスをインスタンス化するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。