i dont know how to create an instance of an inner class using classloader? here is my code in java.
plz help. emergency question
package a;
public class outer{
public outer(){}
public class inner{
public inner(){}
}
}
------------
package test;
public class main{
static void main(){
//how to create an instance of inner class by classLoader.loadclass??
//i have tried but I face instantiation exception
}
}