gpt4 book ai didi

c# - liskov替换原则和异常处理

转载 作者:行者123 更新时间:2023-11-30 19:41:53 25 4
gpt4 key购买 nike

它说派生类不应该抛出任何基类不知道的异常,我试图找出它是如何工作的,在基类中我抛出 System.Exception 而在派生类中我抛出 ArgNullException() .谁能解释一下这样可以吗

 class b
{
virtual public void foo()
{
try
{
if (true)
throw new System.Exception();
}
catch (Exception ex)
{
Console.WriteLine("in base");

}
}


}
class a : b
{
override public void foo()
{
try
{
if (true)
throw new ArgumentNullException();
}
catch (Exception ex)
{
Console.WriteLine("in dervied");
}
}

}

最佳答案

class MyClass
{
public virtual void Foo()
{
if (true)
throw new System.Exception();
}
}
}

class MyDerivedClass : MyClass
{
public override void Foo()
{
if (true)
throw new ArgumentNullException();
}
}
}


public class Program
{
public static void Main()
{
try
{
// a factory creating the correct
// MyClass derived instance
var myClass = someFactory.Create();

myClass.Foo();
}
catch (Exception)
{
// will work.
}
}
}

在这种情况下,您将在基类中抛出尽可能不具体的异常(为什么这很糟糕是另一个讨论)。因此,无论您抛出多么具体的异常,任何使用子类的人都能够捕捉到它。


假设情况正好相反。基类抛出 ArgumentNullException 和子类 Exception。现在,任何只知道基类的人都只会有 ArgumentNullException 的 catch block ,因为这是他们所期望的。因此,当子类抛出 Exception 时,他们的应用程序将失败。

class MyClass
{
public virtual void Foo()
{
if (true)
throw new ArgumentNullException();
}
}
}

class MyDerivedClass : MyClass
{
public override void Foo()
{
if (true)
throw new Exception();
}
}
}


public class Program
{
public static void Main()
{
try
{
// a factory creating the correct
// MyClass derived instance
var myClass = someFactory.Create();

myClass.Foo();
}
catch (ArgumentNullException)
{
// won't work since the subclass
// violates LSP
}
}
}

关于c# - liskov替换原则和异常处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18356655/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com