- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
概括
如果我将文字表达式作为参数传递给函数,那不应该与首先评估相同的文字表达式,然后将变量绑定(bind)到从该评估返回的值,然后将变量名作为相同的参数传递到相同的功能?如果该文字表达式为函数的参数返回了错误的类型,那么跳过将值分配给一个中间变量的步骤,该变量的类型 Scala 从表达式的返回值中推断出来,不应该在之前将不兼容的类型传递给函数它引发了类型不匹配错误,应该吗?然而,这不是以下示例所显示的吗?
例子
这里我尝试获取 Array[Super]
类型的函数参数接受 Array[Sub]
的值.在 Scala repl 中声明以下内容。注意函数的单个参数的类型:
class Super
class Sub extends Super
def wantsSuperArray(a: Array[Super]) { println(a.size) }
Sub
的实例
scala> val s = new Sub
s: Sub = Sub@2c9fa2fb
Array[Sub]
:
scala> val subArray = Array(s)
subArray: Array[Sub] = Array(Sub@2c9fa2fb)
Array
is invariant in its element type ,以及
Array[Sub]
不是
Array[Super]
即使是
Sub
是
Super
:
scala> wantsSuperArray(subArray)
<console>:13: error: type mismatch;
found : Array[Sub]
required: Array[Super]
Note: Sub <: Super, but class Array is invariant in type T.
You may wish to investigate a wildcard type such as `_ <: Super`. (SLS 3.2.10)
wantsSuperArray(subArray)
^
wantsSuperArray()
不会将
Array[Sub]
作为参数类型.那么为什么下面不会产生与上面相同的类型不匹配错误消息呢?
scala> wantsSuperArray(Array(new Sub))
1
scala> wantsSuperArray(Array(s))
1
Array
如下然后错误信息再次出现:
scala> wantsSuperArray(Array[Sub](new Sub))
<console>:11: error: type mismatch;
found : Array[Sub]
required: Array[Super]
Note: Sub <: Super, but class Array is invariant in type T.
You may wish to investigate a wildcard type such as `_ <: Super`. (SLS 3.2.10)
wantsSuperArray(Array[Sub](new Sub))
^
wantsSuperArray
的类型。想要并且正在做某种转换,可能从
Array[Sub]
转换至
Array[Super]
.尽管如此,这似乎是一个陷阱,因为我仍然认为是否使用中间变量的选择不应该在程序的操作中造成这样的差异,而且这种特殊情况似乎是在执行强制转换而不是引发错误基于泛型
Array
的不变性,程序员会期望类型参数。
wantsSuperArray()
如上所述,传递一个文字表达式应该与传递一个变量的名称相同,该变量包含评估同一表达式所产生的值,如上所示,那么我误解了什么?
最佳答案
这是因为 Scala 基于 wantsSuperArray
的预期类型执行类型推断。范围。
所以即使 Array(new Sub)
单独使用将被推断为 Array[Sub]
类型的表达式,编译器会看到您处于类型为 Array[Super]
的值的上下文中。是预期的,因此在调用 Array.apply
时(这是通用的)它尝试使用 Super
作为类型参数(而不是 Sub
),它正确类型( Array.apply
采用类型为 T
的参数的可变参数列表,此处为 T = Super
并且您传递 Sub
的实例,这是一个子Super
的类型,即声音)。
这是 scala 规范的相关摘录,第 6.1 章:表达式类型,第 6.6 章:函数应用程序和第 6.26.4 章:局部类型推断(强调我的):
The typing of expressions is often relative to some expected type (1) (which might be undefined). When we write “expression e is expected to conform to type T ”, we mean: the expected type of e is T , and the type of expression e must conform to T .
...
An application f (e1, ..., em) applies the function f to the argument expressions e1, ..., em. If f has a method type (p1:T1, ..., pn:Tn)U, the type of each argument expression ei is typed with the corresponding parameter type Ti as expected type (2). Let Si be type type of argument ei (i in 1, ..., m). If f is a polymorphic method, local type inference is used to determine type arguments for f (3) .
...
If f is a polymorphic method it is applicable if local type inference can determine type arguments so that the instantiated method is applicable (4)*.
...
Local type inference infers type arguments to be passed to expressions of polymorphic type. Say e is of type [a1 >: L1 <: U1, ..., an >: Ln <: Un]T and no explicit type parameters are given ... If the expression e appears as a value without being applied to value arguments, the type arguments are inferred by solving a constraint system which relates the expression’s type T with the expected type pt (5)
Array(new Sub)
中的含义。 , 类型推断来自
new Sub
至
Array.apply
产生类型
Array[Sub]
.这是您显然没有问题的“简单”案例。如果你只接受这条规则,
Array(new Sub)
应键入
Array[Sub]
.事实上,当它被单独输入时会发生这种情况(例如
val subArray = Array(new Sub)
,
subArray
确实具有类型
Array[Sub]
)。
wantsSuperArray(Array(new Sub))
,参数的预期类型为
wantsSuperArray
(即
Array[Super]
)传递给表达式
Array(new Sub)
(因为它是多态类型的表达式,其中类型参数没有明确给出)。因此表达式
Array(new Sub)
计算为表达式
Array[Super](new Sub)
.换句话说,它的类型为
Array[Super]
.
关于Scala不变的泛型类型参数被方法参数类型忽略,具体取决于参数是文字表达式还是变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15884798/
我是 Robert,我在使用 JavaScript 时遇到了一些问题。 我得到了一个 (这是隐藏的)。我唯一想问你的是:我想检查日期是否在 中已通过。如果通过了我想改变CSS中容器的背景颜色。不幸的
所以我的问题是我想要求输入使用扫描仪的信息,但它根本不打印出来。当它显示跳过的扫描仪的值时,Scanner CheeseType = new Scanner(System.in);,我得到 null。
Fe_Order_Items fe_order_items_id fe_order_specification_id fe_users_id fe_menu_items_id fe_order_ite
人们普遍提到 - “Celery 是一个基于分布式消息传递的异步任务队列/作业队列”。虽然我知道如何使用 Celery 工作人员等。但内心深处我不明白分布式消息传递的真正重要性和意义以及任务队列在其中
我试图理解下面的代码,但有一些我以前从未见过的东西,那就是:“\&\&” 这是代码: int main() { fork() \&\& (fork() || fork()); exit(EXIT_SU
您好,我是论坛新手。 我有很多使用 python 的经验,但没有使用 tkinter 的经验。 这是我的代码: from tkinter import * def Done(): celEn
在 C# 中,假设我们有一个通用类和一个具体类 [Serializable] public class GenericUser { ... [Serializable] public class Co
我尝试使用的库有一个通用抽象类,其中有两个实现该基础的子类。我想编写一个类,它将根据构造函数参数的参数类型自动创建其中一个子级的实例。 基类没有默认构造函数 基类的构造函数也需要其他通用类的实例 代码
我是 Angular 的新手,我一直在尝试了解它的工作原理。我正在制作一个简单的应用程序,其中有人可以通过简单的 html 界面添加用户并使用 SQLite 将其存储在数据库中,然后他们可以编辑或删除
我想创建一个用于存储数据的对象,限制读/写访问。 例如: OBJ obj1; OBJ obj2; // DataOBJ has 2 methods : read() and write() DataO
注入(inject)/隔离密封在 dll 中且不实现接口(interface)的类的首选方法是什么? 我们使用 Ninject。 假设我们有一个类“Server”,我们想要注入(inject)/隔离“
在花费了至少 10 个小时的时间浏览在线资源、视频和教程之后,我有两个关于将我的 Android 应用程序与 mySQL 数据库连接的问题。 保存文件 1) 所有教程都将 php 文件保存在 C/WA
许多有经验的开发人员建议不要使用 Django multi-table inheritance因为它的性能不佳: Django gotcha: concrete inheritance通过 Jacob
我知道我冒着挨揍的风险,但我觉得我在这件事上要绕圈子。为了让模型可用于多个项目,我们已将模型移出到一个单独的项目(一个 DLL)中,作为一系列要实现的接口(interface)。我们的界面上有这一行:
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我遇到了一个特定 mac 的问题,它没有显示我正确构建的某个网站。我测试过的所有其他 mac 和 pc 都能正确显示网站,但是在所有浏览器中这个特定的 mac 显示不正确就像提到的那样,这在其他每台计
给定这段代码 public override void Serialize(BaseContentObject obj) { string file = ObjectDataStoreFold
我已经搜索了网络和我的服务器,但我无法找到我网站的 php.ini。我的网站出现以下错误。 Class 'finfo' not found Details G:\inetpub\wwwroot\lan
SQL 爱好者: 我正在尝试通过玩以下用例来挖掘我一些生疏的 sql 技能: 假设我们有一家有线电视公司,并且有跟踪的数据库表: 电视节目, 观看我们节目的客户,以及 观看事件(特定客户观看特定节目的
我正在设计一个使用 HTML5 网络组件(HTML 导入、影子 DOM、模板和自定义 HTML 元素)的网络应用程序,这些组件是通过普通 JavaScript(无框架)实现的。 Web 应用程序相当简
我是一名优秀的程序员,十分优秀!