Java实例化一个对象的几个步骤

Java实例化一个对象的几个方法Apple apple new Apple()//method 1Apple.getClass().newInstance()//me

Java实例化一个对象的几个方法

Apple apple = new Apple();   //method 1Apple.getClass().newInstance();  //method 2Class.forName("Apple").newInstance();  //method 3
?