1.public classA{<br /> 2.public String doit(intx,inty){<br /> 3.return"a";<br /> 4.}<br /> 5.<br /> 6.public String doit(int...vals){<br /> 7.return"b";<br /> 8.}<br /> 9.}<br /> And:<br /> 25.A a=new A();<br /> 26.System.out.println(a.doit(4,5));<br /> What is the result?()
A、Line 26 prints "a" to System.out.
B、Line 26 prints "b" to System.out.
C、An exception is thrown at line 26 at runtime.
D、Compilation of class A will fail due to an error in line 6.