return ;和return null的区别在于:前者当方法返回值为void时候,return ; 跳出方法。
后者当方法的返回值为object对象时,return null,跳出方法,返回值为空值。