gpt4 book ai didi

c# - 为什么我不能将 KeyValuePair 与默认值进行比较

转载 作者:IT王子 更新时间:2023-10-29 04:02:16 29 4
gpt4 key购买 nike

在 .Net 2.5 中,我通常可以获得值与其类型默认值之间的相等比较 (==)

if (myString == default(string))

但是,当我尝试对默认 KeyValuePair 和 KeyValuePair 进行相等比较时,出现以下异常

代码示例(来自预扩展方法,proto-lambda 静态 ListUtilities 类 :))

public static TKey 
FirstKeyOrDefault<TKey, TValue>(Dictionary<TKey, TValue> lookups,
Predicate<KeyValuePair<TKey, TValue>> predicate)
{
KeyValuePair<TKey, TValue> pair = FirstOrDefault(lookups, predicate);

return pair == default(KeyValuePair<TKey, TValue>) ?
default(TKey) : pair.Key;
}

异常(exception):

Operator '==' cannot be applied to operands of type 'System.Collections.Generic.KeyValuePair<string,object>' and 'System.Collections.Generic.KeyValuePair<string,object>'

是因为作为结构,KeyValuePair 不可为空吗?如果是这种情况,为什么要实现 default 来处理不可空类型?

编辑

根据记录,我选择@Chris Hannon 作为选定答案,因为他给了我我正在寻找的东西、最优雅的选项和简洁的解释,但是我鼓励阅读@Dasuraga 以获得非常全面的解释为什么会这样

最佳答案

发生这种情况是因为 KeyValuePair<TKey, TValue>未定义自定义 == 运算符,并且未包含在可以使用它的预定义值类型列表中。

这是 MSDN documentation 的链接对于那个运营商。

For predefined value types, the equality operator (==) returns true if the values of its operands are equal, false otherwise.

在这种情况下进行相等性检查的最佳方法是调用 default(KeyValuePair<TKey,TValue>).Equals(pair),因为这不是您可以控制的结构。相反。

关于c# - 为什么我不能将 KeyValuePair<TKey, TValue> 与默认值进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6379915/

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