格式1:
类名 对象名称=null; //声明对象
对象名称 =new 类名 (); //实例化对象
Student student =null;
sudent=new Student();
格式2:
类名 对象名称=new 类名(); //在声明对象的同时实例化对象
Student student =new Student ();