- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这两个示例的行为应该相同,但第二个示例出错。为什么?
// Example 1:
const a: 'x' | 'y' = 'x';
const b: ['x'] | ['y'] = [a]; // ok
// Example 2:
function fn(a: 'x' | 'y') {
const b: ['x'] | ['y'] = [a];
// ^
// Type '["x" | "y"]' is not assignable to type '["x"] | ["y"]'.
// Type '["x" | "y"]' is not assignable to type '["x"]'.
// Type '"x" | "y"' is not assignable to type '"x"'.
// Type '"y"' is not assignable to type '"x"'.
}
您可以 try it on the playground .
最佳答案
更新:2019-05-30 TypeScript 3.5 版本引入了 smarter union type checking它针对对象类型(如 {a: "x"} | {a: "y"}
修复了此问题,但似乎对元组类型(如 ["x "] | ["y"]
)。不确定这是不是故意的。
在“示例 1”中,a
被初始化为 "x"
这一事实产生了很大的不同。控制流分析将 a
的类型缩小为 "x"
,尽管您的注释为 "x"| “y”
:
let a: "x" | "y" = "x";
console.log(a === "y"); // error!
// This condition will always return 'false'
// since the types '"x"' and '"y"' have no overlap.
那么当然在这种情况下 [a]
将匹配 ["x"] | ["y"]
,因为 [a]
被编译器识别为 ["x"]
类型。
因此,示例 1 只是巧合地成功了。一般来说,这会失败。编译器一般看不到[A] | [B]
等同于 [A | B]
。前者被视为比后者更窄的类型。
type Extends<T, U extends T> = true;
type OkayTup = Extends<[string | number], [string] | [number]>;
type NotOkayTup = Extends<[string] | [number], [string | number]>; // error!
这可能令人惊讶,因为实际上每个 [A | B]
应该可以分配给类型 [A] | [B]
。当您查看类似的 property-bag 版本时,同样的惊喜会发生:
type OkayObj = Extends<{a: string | number}, {a: string} | {a: number}>;
type NotOkayObj = Extends<{a: string} | {a: number}, {a: string | number}>; // error!
同样,{a: A} | {a: B}
被视为比 {a: A | 更窄的类型B}
,尽管事实上您很难想出不能分配给前者的后一种类型的值。
那么,这里发生了什么?好吧,这似乎是 intentional或 design limitation typescript 。 Word of Language Architect说:
For your example to type check with no errors we would have to consider types of the form
{ x: "foo" | "bar" }
to be equivalent to{ x: "foo" } | { x: "bar" }
. But this sort of equivalence only holds for types with a single property and isn't true in the general case. For example, it wouldn't be correct to consider{ x: "foo" | "bar", y: string | number }
to be equivalent to{ x: "foo", y: string } | { x: "bar", y: number }
because the first form allows all four combinations whereas the second form only allows two specific ones.
(注意:等价性在比上面提到的稍微多一些的情况下成立......它仅适用于每个联合成分中不同的属性在单个联合中采用联合的所有可能值的情况-property case. 所以,{x: string | number, y: boolean, z: string}
等价于 {x: string, y: true, z: string} | {x : string, y: false, z: string} | {x: number, y: true, z: string} | {x: number, y: false, z: string}
)
我想说这是一个设计限制......检测相对罕见的属性联合可以折叠/扩展的情况将非常昂贵,而且不值得实现。
在实践中,如果您发现自己面临编译器未验证但您知道是安全的联合属性合并问题,请展示您的卓越智慧和 assert你的出路:
function fn(a: 'x' | 'y') {
const b = [a] as ['x'] | ['y'] // I'm smarter than the compiler 🤓
}
好的,希望对你有帮助;祝你好运!
关于TypeScript 字符串并集不能分配给函数中的元组并集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56174696/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!