title: 泛型类
泛型类
在本教程中,你将学习开发 TypeScript 中的泛型类。
TypeScript 中的泛型类介绍
泛型 类的语法如下,泛型类型参数列表在尖括号 <> 中,类名之后:
class className<T> {//...}
TypeScript 允许类型参数列表中存在多个泛型类型,如下所示:
class className<K, T> {//...}
泛型约束 同样可以应用于类中的泛型类型:
class className<T extends TypeA> {//...}
在类上放置类型参数允许你开发相同类型的方法和属性。
泛型类例子
在这个例子中,我们将开发一个 Stack 泛型类。
栈是一个基于后进先出 (LIFO) 原则的数据结构,这意味着第一个放入到栈中的元素会是栈中最后一个获取到的元素。
通常栈有大小的限制,默认为空,栈有两个主要的操作:
- Push: 将一个元素推入到栈中
- Pop: 从栈中弹出一个元素
下面演示一个完整的栈泛型类代码,名为 Stack<T>:
class Stack<T> {private elements: T[] = [];constructor(private size: number) {}isEmpty(): boolean {return this.elements.length === 0;}isFull(): boolean {return this.elements.length === this.size;}push(element: T): void {if (this.elements.length === this.size) {throw new Error('The stack is overflow!');}this.elements.push(element);}pop(): T {if (this.elements.length == 0) {throw new Error('The stack is empty!');}return this.elements.pop();}}
下面创建了一个数字栈:
let numbers = new Stack<number>(5);
下面的函数返回 low 和 high 两个数字之间的随机数:
function randBetween(low: number, high: number): number {return Math.floor(Math.random() * (high - low + 1) + low);}
现在可以使用 randBetween() 函数生成随机数,然后推入到数字栈中:
let numbers = new Stack<number>(5);while (!numbers.isFull()) {let n = randBetween(1, 10);console.log(`Push ${n} into the stack.`);numbers.push(n);}
输出:
Push 3 into the stack.Push 2 into the stack.Push 1 into the stack.Push 8 into the stack.Push 9 into the stack.
下面演示从栈中弹出元素的操作,直到栈为空:
while (!numbers.isEmpty()) {let n = numbers.pop();console.log(`Pop ${n} from the stack.`);}
输出:
Pop 9 from the stack.Pop 8 from the stack.Pop 1 from the stack.Pop 2 from the stack.Pop 3 from the stack.
同样的,你可以创建一个字符串栈,如下所示:
let words = 'The quick brown fox jumps over the lazy dog'.split(' ');let wordStack = new Stack<string>(words.length);// push words into the stackwords.forEach((word) => wordStack.push(word));// pop words from the stackwhile (!wordStack.isEmpty()) {console.log(wordStack.pop());}
它是这样工作的:
- 首先,把句子拆分成单词;
- 然后,创建一个栈,大小等于单词数组的单词数量;
- 第三,将单词数组中的单词逐个推入到栈中;
- 最后,将栈中的单词弹出,直到栈为空。
