react18-学习笔记13-类和接口
2023-03-16 06:48:09 阅读次数:99
学习
interface Radio{
switchRadio():void
}
interface Battery{
checkBatteryStatus()
}
interface RadioWithBattery extends Radio{
}
class Car implements Radio{
switchRadio(){
}
}
class Dog implements RadioWithBattery{
switchRadio(){
}
checkBatteryStatus(){
}
}
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_15460007/6052911,作者:前端导师歌谣,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:html+css实战48-类选择器
下一篇:react18-学习笔记17-泛型使用