c# – IndexNotFoundException与NullReferenceException

前端之家收集整理的这篇文章主要介绍了c# – IndexNotFoundException与NullReferenceException前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码尝试捕获空引用.然后抛出一个异常,更明确地说明了message属性中指定的错误.

它应该抛出什么类型的异常? IndexOutOfRangeException?

var existing = this.GetByItemId(entity.ItemId); // int or long
if (existing == null)
{
    throw new IndexOutOfRangeException("The specified item does not exist.");
}

var price = existing.Price;

还是NullReferenceException?

var existing = this.GetByItemId(entity.ItemId);
if (existing == null)
{
    throw new NullReferenceException("The specified item does not exist.");
}

var price = existing.Price;

或者,我们应该让异常运行吗?

var existing = this.GetByItemId(entity.ItemId);
var price = existing.Price; // NullReferenceException coming your way

我们倾向于不做最后一个选项的原因是默认的NullReferenceException对细节很轻,只是状态

Object reference not set to an instance of an object.

说实话,这很可能是C#中最无用的错误信息.

解决方法

我会为此使用自定义异常(像ItemNotFoundException这样的东西).

NullReferenceException或IndexOutOfRangeException可能由this.GetByItemId()内部的其他内容或某个框架中的其他内容抛出.

如果该项目未出现在集合中(例如,添加它),则呼叫者可能希望执行后续操作.使用您自己的异常允许调用者专门捕获该异常并做出相应的反应.

原文链接:https://www.f2er.com/csharp/100754.html

猜你在找的C#相关文章