【单选题】读代码: public class ExceptionTest { class TestException extends Exception {} public void runTest () throws TestException {} public void test () /* Point X*/ { runTest (); } } 第4行//point X 位置, 加哪行代码能让代码可...
【简答题】下面的代码中有什么错误吗?_______ using System class A { public virtual void F(){ Console.WriteLine('A.F') } } abstract class B:A { public abstract override void F() }