处理基类异常
本文关键字:异常 基类 处理 | 更新日期: 2023-09-27 17:49:17
我有以下C#场景-我必须处理基类中实际发生在派生类中的异常。我的基类是这样的:
public interface A
{
void RunA();
}
public class Base
{
public static void RunBase(A a)
{
try
{
a.RunA();
}
catch { }
}
}
派生类如下:
public class B: A
{
public void RunA()
{
try
{
//statement: exception may occur here
}
catch{}
}
}
我想处理发生在B中的异常,比如说异常C(在上面的//语句中(。异常处理部分应该写在RunBase内部的基类catch中。如何做到这一点?
public class Base
{
public static void RunBase(A a)
{
try
{
a.RunA();
}
catch(SomeSpecialTypeOfException ex)
{
// Do exception handling here
}
}
}
public class B: A
{
public void RunA()
{
//statement: exception may occur here
...
// Don't use a try-catch block here. The exception
// will automatically "bubble up" to RunBase (or any other
// method that is calling RunA).
}
}
如何做到这一点?
你是什么意思只需从RunA
中移除try-catch
块。
话虽如此,您需要确保Class A知道如何处理异常,这包括将其简化为UI、日志记录。。。事实上,对于基类来说,这是非常罕见的。处理异常通常发生在UI级别。
public class B: A
{
public void RunA()
{
try
{
// statement: exception may occur here
}
catch(Exception ex)
{
// Do whatever you want to do here if you have to do specific stuff
// when an exception occurs here
...
// Then rethrow it with additional info : it will be processed by the Base class
throw new ApplicationException("My info", ex);
}
}
}
您可能还想按原样抛出异常(单独使用throw
(。
如果你不需要在这里处理任何事情,不要放try{}catch{},让异常自己冒出来,并由基类处理。
只需从类B中删除try-catch,如果发生异常,它将向上推进调用链,直到处理为止。在这种情况下,您可以使用现有的try-catch块在RunBase中处理异常。
尽管在您的示例中,B不是从基类base派生的。如果您真的想处理在其父类的派生类中抛出异常的情况,您可以尝试以下操作:
public class A
{
//Public version used by calling code.
public void SomeMethod()
{
try
{
protectedMethod();
}
catch (SomeException exc)
{
//handle the exception.
}
}
//Derived classes can override this version, any exception thrown can be handled in SomeMethod.
protected virtual void protectedMethod()
{
}
}
public class B : A
{
protected override void protectedMethod()
{
//Throw your exception here.
}
}