TS 泛型

泛型(宽泛的,不确定的类型)

  • 使用场景:定义一个函数或类时,无法确定要使用的具体类型(返回值、参数、属性的类型不能确定)
  • 泛型使用时相当于一个参数
functiondemo<T>(arg: T): T{
   return arg;
}
// 泛型T可以看做一个变量
demo<number>(10)
demo<string>('你好')
// 基本类型可以不加泛型
demo(true)
demo(10)
泛型结合接口
interface Param<A,B> {
   title: string,
   state: A,
   list: B[]
}

type ListType = {name:string,age:number}
const p1: Param<boolean,ListType> = {
   title: '泛型和接口结合使用',
   state: true,
   list: [
      {name:'张三',age:18},
      {name:'李四',age:16},
   ]
}
泛型继承
// 泛型的继承(对泛型的约束)
function getLength<T extends { length:number }>(arg: T): number{
   return arg.length;
}
getLength([1,2,3,'4']) // 4
getLength('nihao') // 5

function getLength<T extends string | any[]>(arg: T): number{
   return arg.length;
}
getLength([1,2,3,'4']) // 4

// 当使用T[]时,T表示的是数组参数的元素类型
function getLength<T>(arg: T[]): number{
   return arg.length;
}
getLength<string | number>(['张三','李四',10]) // 3
类中使用泛型
// 类中使用泛型
class MyClass<T>{
   prop: T;

   constructor(prop: T){
      this.prop = prop;
   }
}
// 泛型是一个type
type User = {name:string,age:number}
const user1:User = {name:'张三',age:18}
const c1 = new MyClass<User>( user1 )
// 泛型是基本类型
const c2 = new MyClass<string>('张三')
上一篇:小程序引入 Vant Weapp 极简教程


下一篇:python数据可视化:显示两个变量间的关系散点图scatterplot