Typescript 中的可选类成员

编程入门 行业动态 更新时间:2024-10-08 13:34:44
本文介绍了Typescript 中的可选类成员的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

有没有办法在 Typescript 类中指定类型安全的可选成员?

Is there a way to specify type-safe optional members in Typescript classes?

也就是说,像……

class Foo {
    a?: string;
    b?: string;
    c: number;
}

....

foo = new Foo();
...
if (foo.a !== undefined) { ... (access foo.a in a type-safe string manner) ... }

如果您熟悉 OCaml/F#,我正在寻找诸如字符串选项"之类的东西.

In case you are familiar with OCaml/F#, I am looking for something like 'string option'.

推荐答案

以下在 TypeScript 3.x 中有效:

The following works in TypeScript 3.x:

class Foo {
  a?: string;
  b?: string;
  c: number = 123;
}

请注意,您需要初始化任何非可选成员(如所示的内联成员或构造函数中的成员).

Note that you need to initialise any members that are not optional (either inline as shown or in the constructor).

这篇关于Typescript 中的可选类成员的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

更多推荐

[db:关键词]

本文发布于:2023-04-29 10:34:37,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1188597.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:可选   成员   Typescript

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!