请问以下代码运行结果是( )public class Except{public static void ThrowException(){throw new Exception();}public static void Main(){try{Console.WriteLine("A");ThrowException();}catch (Exception e){Console.WriteLine("B");}finally{Console.WriteLine("C");}}}
A
B. AB
C. ABC
D. 程序运行时,给出错误提示并终止
查看答案
( )类是C#中其他所有异常类的基类。
A. System.AllException
B. System.Exception
C. System.Exceptions
D. System.AllExceptions
阅读以下C#代码:using System;public class TestException: Exception{public TestException():base(){}public TestException(String message):base(message){}public TestException(String message,Exception innerException):base(message,innerException){}}public class TextExceptionTestApp{ public static void Main() { try{ int i; Console.WriteLine("请输入的字符为:"); i=Convert.ToInt32(Console.ReadLine()); if(i>10) Console.WriteLine("OK!"); else if(i>5) throw new TestException("Err Input!"); } catch (Exception e) { TestException Ex=new TestException("Catch!",e); Console.WriteLine(Ex.Message); } Console.WriteLine();}}当输入“A”时,程序运行的结果应该为()。(选择一项)
A. OK!
B. Err Input!
Catch!
D. 无显示,程序直接退出。
查阅以下的C#代码:public class Except{public static void ThrowException() { throw new Exception(); }public static void Main(){try{ Console.WriteLine("try"); }catch(Exception e) {Console.WriteLine("catch");ThrowException();}finally { Console.WriteLine("finally"); }}}请问代码运行结果是( )。
A. trycatchfinally
B. try
C. catchfinally
D. tryfinally
在.NET中,程序中的错误可以划分为以下三类,除了( ).
A. 逻辑错误
B. 语义错误
C. 语法错误
D. 规格错误