在 TypeScript 的箭头函数中使用泛型
我们可以通过在函数参数之前设置它来在箭头函数中使用泛型,例如 const returnInArray = <T>(value: T): T[] => {}
。 然后可以在调用函数时传递泛型,例如 returnInArray<string>('hello')
。
const returnInArray = <T>(value: T): T[] => {
return [value];
};
const strArray = returnInArray<string>('hello');
const numArray = returnInArray<number>(100);
泛型允许我们将类型作为变量传递给函数和类。
泛型使用箭头括号在函数参数之前指定。
调用具有泛型的函数的语法是相同的——它在函数的参数之前传递。
请注意,我们不必在调用函数时显式提供泛型。 在这种情况下,TypeScript 将能够根据传入参数的类型推断泛型的类型。
const returnInArray = <T>(value: T): T[] => {
return [value];
};
// const strArray: string[]
const strArray = returnInArray('hello');
// const numArray: number[]
const numArray = returnInArray(100);
我们可以对泛型应用约束,只允许传递某些类型。
type CanRun = {
run(): void;
};
// 只能用具有 run() 方法的对象调用
const callRun = <T extends CanRun>(obj: T) => {
obj.run();
};
// the animal runs
callRun({ run: () => console.log('the animal runs') });
class Dog {
run() {
console.log('the dog runs');
}
}
callRun(new Dog()); // the dog runs
callRun 箭头函数只能使用具有属性 run 的对象调用,该属性是返回类型为 void 的函数。
如果我们尝试使用不满足 CanRun 类型的类型调用函数,我们会得到一个错误。
type CanRun = {
run(): void;
};
const callRun = <T extends CanRun>(obj: T) => {
obj.run();
};
// ⛔️ Argument of type 'number' is not assignable
// to parameter of type 'CanRun'.ts(2345)
callRun(100);
当我们需要保证只能使用包含某些属性的对象调用函数时,此模式非常常用。
所述对象可以是多种类型,但只要它包含指定的属性,它就可以用作函数的参数。
class Shark {
swim() {
console.log('The shark swims');
}
}
class Dolphin {
swim() {
console.log('The dolphin swims');
}
}
interface CanSwim {
swim(): void;
}
const callSwim = <T extends CanSwim>(obj: T): void => {
obj.swim();
};
callSwim<Dolphin>(new Dolphin());
callSwim<Shark>(new Shark());
callSwim 函数接受一个对象参数并调用它的 swim 方法。
该函数使用约束来确保它只获取包含函数类型 swim 属性的传递对象。
我们还可以在类的箭头函数中使用泛型。
class GenericArray {
public arr: (string | number)[] = [];
insert = <T extends string | number>(el: T): void => {
this.arr.push(el);
};
print = (): void => {
console.log(this.arr);
};
}
const ga1 = new GenericArray();
ga1.insert<string>('a');
ga1.insert<number>(1);
ga1.print(); // 👉️ ['a', 1]
// ⛔️ Argument of type '{ hello: string; }' is not assignable
// to parameter of type 'string | number'.ts(2345)
ga1.insert({ hello: 'world' });
insert 类方法可以传递一个字符串或一个数字。
相关文章
在 TypeScript 中使用 try..catch..finally 处理异常
发布时间:2023/03/19 浏览次数:181 分类:TypeScript
-
本文详细介绍了如何在 TypeScript 中使用 try..catch..finally 进行异常处理,并附有示例。
在 TypeScript 中使用 declare 关键字
发布时间:2023/03/19 浏览次数:97 分类:TypeScript
-
本教程指南通过特定的实现和编码示例深入了解了 TypeScript 中 declare 关键字的用途。
在 TypeScript 中 get 和 set
发布时间:2023/03/19 浏览次数:172 分类:TypeScript
-
本篇文章演示了类的 get 和 set 属性以及如何在 TypeScript 中实现它。
在 TypeScript 中格式化日期和时间
发布时间:2023/03/19 浏览次数:161 分类:TypeScript
-
本教程介绍内置对象 Date() 并讨论在 Typescript 中获取、设置和格式化日期和时间的各种方法。
在 TypeScript 中返回一个 Promise
发布时间:2023/03/19 浏览次数:182 分类:TypeScript
-
本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。
在 TypeScript 中定义函数回调的类型
发布时间:2023/03/19 浏览次数:221 分类:TypeScript
-
本教程说明了在 TypeScript 中为函数回调定义类型的解决方案。为了程序员的方便和方便,实施了不同的编码实践指南。
在 TypeScript 中把 JSON 对象转换为一个类
发布时间:2023/03/19 浏览次数:110 分类:TypeScript
-
本教程演示了如何将 JSON 对象转换为 TypeScript 中的类。
使用 NPM 将 TypeScript 更新到最新版本
发布时间:2023/03/19 浏览次数:130 分类:TypeScript
-
本教程说明了如何使用 npm 更新到最新版本的 TypeScript。这将为如何使用 npm 将 TypeScript 更新到最新版本提供完整的实际示例。
使用 jQuery 和 TypeScript
发布时间:2023/03/19 浏览次数:151 分类:TypeScript
-
本教程提供了使用 jQuery 和 TypeScript 的基本理解和概念。