This question is derived from: How to get this method object through reflection?
I am trying to do the following:
Class c1 = Class.forName("[Ljava.lang.Integer;");
Class c1 = Class.forName("[Lint;");
What is the workaround? int[].classis the only solution?
source
share