TypeScript:接口 interface implement

一、接口

类型别名 type

// 描述一个对象类型
type MyUserName=string|number;
let myname:MyUserName="abc";

type myType={
	name:string,
	age:number
}
const obj:myType={
	name:"Tony",
	age":18
}

接口 interface

接口就是用来定义一个类的结构,用来定义一个类中应该包含哪些属性和方法,同时接口也可以当成声明类型来使用。
可以重复定义。

interface myInterface{
	name:string,
	age:number
}
interface myInterface{
	gender:string,
}
const obj:myInterface={
	name:"Tony",
	age":18,
	gender:"男“”
}

二、接口与类 implement

接口可以在定义类的时候去限制类的结构。
接口中所有的属性不能有实际的值,所有的方法不能有方法体,是抽象方法;接口只定义对象的结构,不考虑实际值。

interface myInterface{
	name:string,
	sayHello():void;
}
// 定义类时,可以使类去实现一个接口,就是使类满足接口的要求
class myClass implements myInterface{
	name:string;
	sayHello(name){
		this.name = name;
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值