下列代码的执行结果是() public class super(){ public int getLength(){ return 4;} } public class sub extends super(){ public int getLength(){ return 5;} } public static void main(String[] args){ super soo=new super(); sub s=new sub(); System.out.println(soo.getLength()+","+s.getLength());}