Java实例化一个对象的几个方法
Apple apple = new Apple(); //method 1Apple.getClass().newInstance(); //method 2Class.forName("Apple").newInstance(); //method 3