c#异常处理
try
catch
final
finally
Correct answer: 3
final
The final keyword is not used to handle exceptions in C#.NET.
尝试
抓住
最后
最后
正确答案:3
最后
final关键字不用于处理C#.NET中的异常。
through
throw
final
caught
Correct answer: 2
throw
The throw is a valid keyword used in exception handling.
通过
扔
最后
抓住
正确答案:2
扔
throw是异常处理中使用的有效关键字。
The throw keyword is not supported in C#.NET
The throw keyword is used to throw an exception object programmatically
The throw keyword is used in older versions of the .NET framework
The throw keyword is mandatory to use with the try block
Correct answer: 2
The throw keyword is used to throw an exception object programmatically
The 2nd statement is correct about throw keyword.
C#.NET不支持throw关键字
throw关键字用于以编程方式引发异常对象
throw关键字在.NET Framework的较旧版本中使用
throw关键字必须与try块一起使用
正确答案:2
throw关键字用于以编程方式引发异常对象
关于throw关键字的第二条语句是正确的。
using System;
namespace my_namespace
{
class program
{
static void Main(string[] args)
{
int a = 0;
int b = 10;
int c = 0;
try
{
c = b / a;
}
catch (DivideByZeroException d)
{
Console.WriteLine("Divide by zero exception occurred");
}
}
}
}
Divide by zero exception occurred
Syntax error
Linker error
No output
Correct answer: 1
Divide by zero exception occurred
The above code will print "Divide by zero exception occurred" on the console screen.
除零发生异常
语法错误
链接器错误
无输出
正确答案:1
除零发生异常
上面的代码将在控制台屏幕上显示“发生零除零异常”。
using System;
namespace my_namespace
{
class program
{
static void Main(string[] args)
{
int a = 0;
int b = 10;
int c = 0;
try
{
c = b / a;
}
finally
{
Console.WriteLine("Finally executed");
}
}
}
}
Yes, finally will execute
No, finally will not execute
Correct answer: 1
Yes, finally will execute
Yes, finally block will execute.
The output would be,
using System ;
namespace my_namespace
{
class program
{
static void Main ( string [ ] args )
{
int a = 0 ;
int b = 10 ;
int c = 0 ;
try
{
c = b / a ;
}
finally
{
Console . WriteLine ( " Finally executed " ) ;
}
}
}
}
是的,最后会执行
不,最终将无法执行
正确答案:1
是的,最后会执行
是的,finally块将执行。
输出将是
翻译自: https://www.includehelp.com/dot-net/csharp-exception-handling-aptitude-questions-and-answers-4.aspx
c#异常处理