- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
这是一种我无法理解的奇怪行为。在我的示例中,我有一个类 Sample<T>
和来自 T
的隐式转换运算符至 Sample<T>
.
private class Sample<T>
{
public readonly T Value;
public Sample(T value)
{
Value = value;
}
public static implicit operator Sample<T>(T value) => new Sample<T>(value);
}
为 T
使用可空值类型时会出现问题例如 int?
.
{
int? a = 3;
Sample<int> sampleA = a;
}
这里是关键部分:
在我看来这不应该编译因为 Sample<int>
定义从 int
的转换至 Sample<int>
但不是来自 int?
至 Sample<int>
. 但它编译并运行成功!(我的意思是调用转换运算符并将 3
分配给 readonly
字段。)
而且情况变得更糟。这里没有调用转换运算符并且 sampleB
将设置为 null
:
{
int? b = null;
Sample<int> sampleB = b;
}
一个很好的答案可能会分为两部分:
最佳答案
你可以看看编译器是如何降低这段代码的:
int? a = 3;
Sample<int> sampleA = a;
进入this :
int? nullable = 3;
int? nullable2 = nullable;
Sample<int> sample = nullable2.HasValue ? ((Sample<int>)nullable2.GetValueOrDefault()) : null;
因为 Sample<int>
是一个类,它的实例可以被分配一个空值,并且使用这样一个隐式运算符,也可以分配一个可空对象的基础类型。所以这样的赋值是有效的:
int? a = 3;
int? b = null;
Sample<int> sampleA = a;
Sample<int> sampleB = b;
如果Sample<int>
将是 struct
,那当然会出错。
编辑:那么为什么这可能呢?我在规范中找不到它,因为它是故意违反规范的,只是为了向后兼容而保留的。您可以在 code 中阅读相关信息:
DELIBERATE SPEC VIOLATION:
The native compiler allows for a "lifted" conversion even when the return type of the conversion not a non-nullable value type. For example, if we have a conversion from struct S to string, then a "lifted" conversion from S? to string is considered by the native compiler to exist, with the semantics of "s.HasValue ? (string)s.Value : (string)null". The Roslyn compiler perpetuates this error for the sake of backwards compatibility.
这个“错误”就是这样implemented在罗斯林:
Otherwise, if the return type of the conversion is a nullable value type, reference type or pointer type P, then we lower this as:
temp = operand
temp.HasValue ? op_Whatever(temp.GetValueOrDefault()) : default(P)
所以根据spec对于给定的用户定义转换运算符 T -> U
存在一个提升运算符 T? -> U?
其中 T
和 U
是不可为空的值类型。然而,这种逻辑也适用于 U
的转换运算符。由于上述原因是引用类型。
第 2 部分 如何防止代码在这种情况下编译?好吧,有办法。您可以专门为可空类型定义一个额外的隐式运算符,并使用属性 Obsolete
对其进行修饰。 .这将需要类型参数 T
限于 struct
:
public class Sample<T> where T : struct
{
...
[Obsolete("Some error message", error: true)]
public static implicit operator Sample<T>(T? value) => throw new NotImplementedException();
}
此运算符将被选为可空类型的第一个转换运算符,因为它更具体。
如果您不能做出这样的限制,您必须为每个值类型单独定义每个运算符(如果您真的确定您可以利用反射并使用模板生成代码):
[Obsolete("Some error message", error: true)]
public static implicit operator Sample<T>(int? value) => throw new NotImplementedException();
如果在代码中的任何地方引用都会出错:
Error CS0619 'Sample.implicit operator Sample(int?)' is obsolete: 'Some error message'
关于c# - 为什么从 <T> 到 <U> 的隐式转换运算符接受 <T?>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50388010/
Or 运算符 对两个表达式进行逻辑“或”运算。 result = expression1 Or expression2 参数 result 任意数值变量。 expression1 任意
Not 运算符 对表达式执行逻辑非运算。 result = Not expression 参数 result 任意数值变量。 expression 任意表达式。 说明 下表显示如何
Is 运算符 比较两个对象引用变量。 result = object1 Is object2 参数 result 任意数值变量。 object1 任意对象名。 object2 任意
\ 运算符 两个数相除并返回以整数形式表示的结果。 result = number1\number2 参数 result 任意数值变量。 number1 任意数值表达式。 numbe
And 运算符 对两个表达式进行逻辑“与”运算。 result = expression1 And expression2 参数 result 任意数值变量。 expression1
运算符(+) 计算两个数之和。 result = expression1 + expression2 参数 result 任意数值变量。 expression1 任意表达式。 exp
我对此感到困惑snippet : var n1 = 5-"4"; var n2 = 5+"4"; alert(n1); alert(n2); 我知道 n1 是 1。那是因为减号运算符会将字符串“4”转
我想我会得到 12,而不是 7。 w++,那么w就是4,也就是100,而w++, w 将是 8,1000;所以 w++|z++ 将是 100|1000 = 1100 将是 12。 我怎么了? int
Xor 运算符 对两个表达式进行逻辑“异或”运算。 result = expression1 Xor expression2 参数 result 任意数值变量。 expression1
Mod 运算符 两个数值相除并返回其余数。 result = number1 Mod number2 参数 result 任意数值变量。 number1 任意数值表达式。 numbe
Imp 运算符 对两个表达式进行逻辑蕴涵运算。 result = expression1 Imp expression2 参数 result 任意数值变量。 expression1 任
Eqv 运算符 执行两个表达式的逻辑等价运算。 result = expression1 Eqv expression2 参数 result 任意数值变量。 expression1 任
我有一个运算符重载的简单数学 vector 类。我想为我的运算符(operator)获取一些计时结果。我可以通过计时以下代码轻松计时我的 +=、-=、*= 和/=: Vector sum; for(s
我是用户定义比较运算符的新手。我正在读一本书,其中提到了以下示例: struct P { int x, y; bool operator、运算符<等),我们
在 SQL 的维基百科页面上,有一些关于 SQL 中 bool 逻辑的真值表。 [1] 维基百科页面似乎来源于 SQL:2003 标准。 等号运算符 (=) 的真值表与 SQL:2003 草案中的 I
我遇到了一个奇怪的 C++ 运算符。 http://www.terralib.org/html/v410/classoracle_1_1occi_1_1_number.html#a0f2780081f
我正在阅读关于 SO 和 answers 中的一个问题,它被提到为: If no unambiguous matching deallocation function can be found, pr
我偶然发现了这个解决方案,但我无法理解其中到底发生了什么。谁能解释一下! 据我了解,它试图通过计算一半的单元格然后将其加倍来计算 a*b 网格中的单元格数量。但是我无法理解递归调用。 请不要建议其他解
Go的基本类型 布尔类型bool 长度:1字节 取值:布尔类型的取值只能是true或者false,不能用数字来表示 整型 通用整型 int / uint(有符号 / 无符号,下面也类似) 长度:根据运
在本教程中,您将学习JavaScript中可用的不同运算符,以及在示例的帮助下如何使用它们。 什么是运算符? 在JavaScript中,运算符是一种特殊符号,用于对运算数(值和变量)执行操作。例如,
我是一名优秀的程序员,十分优秀!