- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何缩小别名条件表达式中类的属性类型?
短 :在一个类方法中,我想做一个类型缩小检查,例如 this._end === null && this._head === null
,但我想先将此检查的结果分配给一个变量,然后再在类型缩小 if
中使用它条款。它没有按预期工作。
不短 :假设我们有一个 Queue 类:
class Queue {
private _length: number = 0;
private _head: Node | null = null;
private _end: Node | null = null;
public enqueue(node: Node): boolean {
this._length += 1;
const isQueueEmpty = this._end === null;
if (isQueueEmpty) {
this._head = node;
this._end = node;
return true;
}
this._end.setLink(node); // TypeScript doesn't understand that this._end passed the null check
// in the if statement and writes that this._end can be null.
this._end = node;
return true;
}
}
如果你直接在
中写入 enqueue 函数中的检查如果 条件,那么 TypeScript 就知道 this._end 不是
空 :
public enqueue(node: Node): boolean {
this._length += 1;
if (this._end === null) {
this._head = node;
this._end = node;
return true;
}
this._end.setLink(node); // Now TypeScript understand that this._end passed the null check
this._end = node;
return true;
}
但是代码的描述性较差。
type QueuePointerKeys = '_head' | '_end';
private _isQueueEmpty(): this is this & { [K in QueuePointerKeys]: null } {
return this._end === null;
}
它不起作用。如果你把它放在 enqueue 方法中,那么:
public enqueue(node: Node): boolean {
this._length += 1;
if (this._isQueueEmpty()) {
this._head = node; // TypeScript writes that a variable of type null cannot be assigned the type Node
this._end = node; // TypeScript writes that a variable of type null cannot be assigned the type Node
return true;
}
this._end.setLink(node); // TypeScript doesn't understand that this._end passed the null check
// in the if statement and writes that this._end can be null.
this._end = node;
return true;
}
如何使用类方法,例如
_isQueueEmpty
类型缩小?这与
this._end === null && this._head === null
类似。直接用作
的条件如果 陈述?
最佳答案
Control Flow Analysis of Aliased Conditions and Discriminants只是最近才添加的,它有一些限制,包括:
Narrowing through indirect references occurs only when the conditional expression or discriminant property access is declared in a const variable declaration with no type annotation, and the reference being narrowed is a const variable, a readonly property, or a parameter for which there are no assignments in the function body.
this._end
不是只读属性,它不会为你工作。我通过分配
this._end
确认这是您的问题到本地 const 变量,然后将其用于条件以及
setLink
称呼:
interface Node {
setLink(node: Node): void
}
class Queue {
private _length: number = 0;
private _head: Node | null = null;
private _end: Node | null = null;
public enqueue(node: Node): boolean {
this._length += 1;
const end = this._end
const isQueueEmpty = end === null;
if (isQueueEmpty) {
this._head = node;
this._end = node;
return true;
}
end.setLink(node);
this._end = node;
return true;
}
}
事实上,有一个针对您的具体案例的未解决问题:
Control flow analysis of aliased conditions is not able to narrow object properties #46412 ,以及
Allow non-readonly properties to be used in aliased conditional expressions #44972 .
关于javascript - 为什么分配给变量(别名条件)时对类属性的类型缩小检查不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70244142/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!