本篇介绍 TypeScript 实用类型中的 NonNullable<Type> 类型。NonNullable 会从传入的类型中将 nullundefined 排除,之后把剩下的成员构造成一个新类型。

下面是一个简单的例子:

type U1 = string | number | undefined;
type T0 = NonNullable<U1>;

上面的代码中定义了一个名为 U1 的联合类型,NonNullable 会将该类型中的 undefined 排除,再将剩余的成员构造成新的类型 T0,类型 T0 等价于下面的类型:

type NewT0 = string | number;

再看一个包含成员 null 的例子:

type U2 = string[] | null | undefined;
type T1 = NonNullable<U2>;

上面的类型 U2 中包含成员 null,因此 NonNullable 会把 nullundefined 都排除掉,构造的新类型便是 string[]。类型 T1 等价于下面的类型:

type NewT1 = string[];

NonNullable 的类型定义源码中通过 extends 实现,源码如下:

/**
 * Exclude null and undefined from T
 */
type NonNullable<T> = T extends null | undefined ? never : T;

never 表示从来不会出现的值的类型,因此联合类型的当成员为 nullundefined 时,NonNullable 会将他们排除,只留下联合类型中的其他成员,通过保留下来的成员构造新的类型,也就是源码中的 T 类型。

Last modification:August 15, 2024
如果觉得我的文章对你有用,请随意赞赏