gpt4 book ai didi

typescript - 什么是 | typescript 中使用的运算符?

转载 作者:搜寻专家 更新时间:2023-10-30 21:10:09 26 4
gpt4 key购买 nike

谷歌搜索只会返回与按位运算符的数值应用有关的结果,所以我想在 SO 上询问它。我正在阅读@ngrx 文档,我看到了这段代码:

export class Increment implements Action {
readonly type = CounterActionTypes.INCREMENT;
}

export class Decrement implements Action {
readonly type = CounterActionTypes.DECREMENT;
}

export class Reset implements Action {
readonly type = CounterActionTypes.RESET;

constructor(public payload: number) {}
}

export type CounterActionsUnion = Increment | Decrement | Reset;

我的困惑在于在类之间使用按位或 - 如果这个问题听起来幼稚,我很抱歉,但为什么 Increment |递减 | Reset 表示三个类的联合?谢谢!

最佳答案

在问题的第二条评论中感谢@CRice。我发布它只是为了方便,因为他/她没有。

The | character, when used in typescript denotes a union type

关于typescript - 什么是 | typescript 中使用的运算符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50356429/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com