- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如果我们在 ulong
表达式和 ulong?
表达式之间使用 ==
运算符,则运算符重载 bool ulong(ulong left, ulong right)
似乎被使用。
换句话说,运算符认为两个表达式都是非空的。
在这个示例程序中,equal
正确地变为 false,无一异常(exception)。
void Main()
{
var temp = new Temp(0);
object temp2 = null;
var equal = temp.Id == (temp2 as Temp)?.Id; // False :) but how?
}
public class Temp
{
public ulong Id {get;}
public Temp(ulong id)
{
this.Id = id;
}
}
ulong?
到 ulong
的转换。 (ulong)(ulong?)null
抛出:“可为 Null 的对象必须有一个值。”ulong 的每个可能的值 返回正确的值?
,包括 null?如果是这样,如何? ulong?
类型比 ulong
多一个可能的值,因此应该有一组两个值映射到相同 ulong
值,这会引入一个误报“真”结果。理论上,我可以想象 null 被合并为 default(ulong)
,但是我上面示例中的结果将是 true,这将是一个错误的答案。正如我们所见,编译器不会犯这个错误 - 它会正确回答。
最佳答案
来自 MSDN :
Lifted operators permit predefined and user-defined operators that operate on non-nullable value types to also be used with nullable forms of those types. Lifted operators are constructed from predefined and user-defined operators that meet certain requirements, as described in the following:
...
For the equality operators
== !=
a lifted form of an operator exists if the operand types are both non-nullable value types and if the result type is
bool
. The lifted form is constructed by adding a single?
modifier to each operand type. The lifted operator considers two null values equal, and a null value unequal to any non-null value. If both operands are non-null, the lifted operator unwraps the operands and applies the underlying operator to produce thebool
result.
您没有使用运算符:
bool ==(ulong left, ulong right)
您正在使用提升运算符:
bool ==(ulong? left, ulong? right)
此运算符采用两个 ulong?
参数,如果两者均为 null,或者两者均非 null 且具有相同的值,则返回 true。
您可能正在查看 Visual Studio,在这种情况下它确实向您展示了一些令人困惑的东西:
不要对此感到困惑——正如@mjwills 在评论中指出的那样,this is a known issue .
如果你这样写:
public bool M(ulong a, ulong? b) {
return a == b;
}
然后编译器产生如下代码:
public bool M(ulong a, ulong? b)
{
ulong? num = b;
return (a == num.GetValueOrDefault()) & num.HasValue;
}
num.GetValueOrDefault()
如果 b
为 null
,则返回 0
,否则返回 的值b
。所以 M
返回 true
当且仅当 b
不为 null,并且与 a
具有相同的值。
关于c# - "ulong == ulong?"评估为 "ulong == ulong"工作正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58394185/
如果我们在 ulong 表达式和 ulong? 表达式之间使用 == 运算符,则运算符重载 bool ulong(ulong left, ulong right) 似乎被使用。 换句话说,运算符认为两
我正在尝试将字典序列化为 JSON,并出现以下异常: new JavaScriptSerializer().Serialize(mydict)` Type 'System.Collections.Ge
我会将 ulong 值的 bin/oct/dec/hex 值作为字符串。所以我必须使用具有所需基数的 convert.tostring(, base) 。为了支持这一点,我将 ulong 值转换为 l
我有一个枚举,我想检查枚举类型是否为 ulong。 到目前为止尝试过: var checkValue = Enum.GetUnderlyingType(param.ParamType); // pa
我正在处理 std::bitset vector 中的数据,我都必须使用自制函数与 unsigned long(通过 std::bitset::to_ulong())和字符串相互转换(确切的算法与这个
我需要在 C# 中进行巨大的功率计算(想想 2 ^ 1,000,000),而 ulong 远远不够。 .NET 中可能没有任何更大的实现,但是是否有一些第 3 方的东西,或者甚至是我可以做的东西? 最
我目前正在尝试用 C# 制作一个应用程序,它需要一个 ulong number 输入和输出数字的口头表示(即 12 到“十二”,45238 到“四万五千二三十八”等),我希望它能够通过 uLong.M
我对 ulong 类型的行为有点困惑。我理解它是 64-bit integer used for positive numbers (最大值 18,446,744,073,709,551,615)。我
我有一段代码是 // Bernstein hash // http://www.eternallyconfuzzled.com/tuts/algorithms/jsw_tut_hashing.aspx
我正在尝试适应某些代码,这些代码会在某些数据的头部创建一个 char *。然后能够一次递增该指针 unsigned long 以读取数据。 有人告诉我执行此操作的一个好方法是使用 ifstream 将
这个问题在这里已经有了答案: How to compare Lists in Unit Testing (7 个答案) 关闭 5 年前。 考虑函数: public static ulong[] pr
我正在为加泰罗尼亚语数字编写程序。所以这里是公式: 我决定使用公式的中间部分,因为其他部分对我的知识来说太抽象了(也许我在数学课上睡得太多了)。实际上,我的程序适用于 n = 0;、n = 5;、n
我如何将十六进制/乌龙数的重要部分作为字符串? 例如,如果我有 0x00000321321,我想得到“321321”。 如果我尝试这样的事情: ulong x = 0x0000023632763; s
我想从 64 位字符串中删除位(由无符号长整数表示)。我可以通过一系列掩码和移位操作来完成此操作,或者像下面的代码一样迭代每一位。是否有一些巧妙的位操作方法可以使此操作更快? public ulong
我有以下方法: public static T ExecuteScalar( string query, SqlConnection connection, params Sq
这很好用: Public Const test As ULong = 1 << 30 这不能很好地工作: Public Const test As ULong = 1 << 31 它会产生此错误: C
我正在开发一个“简单”的基数转换器,将基数为 10 的 ULong 转换为任何基数的 String。这里我使用 64 个字符。 Usecase 是缩短 ULong,无论如何都存储为 String。 P
我正在开发一个“简单”的基数转换器,将基数为 10 的 ULong 转换为任何基数的 String。这里我使用 64 个字符。 Usecase 是缩短 ULong,无论如何都存储为 String。 P
如何将表示无符号长整型的 Long/ULong 转换为带填充零的无符号十六进制字符串(16 位十六进制字符串)? 我正在寻找 Kotlin 或 Java 中的简单而简洁的解决方案。 最佳答案 val
下面的代码允许用户输入一个整数并将其转换为二进制。输入的数字是(1) 解析成 long 类型和(2)转化为乌龙型。 namespace ConsoleApplication1 { class Prog
我是一名优秀的程序员,十分优秀!