This is an academical exercise (disclaimer).
I'm building an application that will profit from being as fast as possible as it will compete with others.
If I declare a class using reflection (example bellow) I know I will suffer a huge penalty declaring that class (as opposed to a standard declaration).
Class mDefinition = Class.forName("MySpecialClassString");
Constructor mConstructor = mDefinition.getConstructor(new Class[]{MySpecialClass.class});
myClass = (MySpecialClass) mConstructor.newInstance(this);
However, after declaring myClass if I use it in a standard fashion myClass.myMethod() will I also suffer from performance hogs or will it be the same as if I had declared the class in a standard fashion?