//Can we create an instance of an inner class outside an instance of the outer class? //no, this code does not compile public class morestuff { public static void main(String[] args) { stuff00 ff = new stuff00(); stuff00.Inner vv = new stuff00.Inner(); } }