在Java 中使用反射實例化內部類別
問題:
問題:<code class="java">Class<?> clazz = Class.forName("com.mycompany.Mother$Child"); Child c = clazz.newInstance();</code>
會產生InstantiationException。
答案:實例化內部類別時,需要一個封閉類別的實例。為此,請使用 Class.getDeclaredConstructor() 取得建構子並提供封閉類別的實例作為參數。
<code class="java">Class<?> enclosingClass = Class.forName("com.mycompany.Mother"); Object enclosingInstance = enclosingClass.newInstance(); Class<?> innerClass = Class.forName("com.mycompany.Mother$Child"); Constructor<?> ctor = innerClass.getDeclaredConstructor(enclosingClass); Object innerInstance = ctor.newInstance(enclosingInstance);</code>
範例:
替代解決方案:
<code class="java">public class Mother { public static class Child { public void doStuff() { // ... } } }</code>
以上是Java中如何使用反射實例化內部類別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!