// 抽象类
 abstract class Geom {
   width: number;
   getType() {
     return 'Gemo';
   }
   abstract getArea(): number;
 
 class Circle extends Geom {
   getArea() {
     return 123;
   }
 }

 class Square {}
/class Triangle {}

点赞(2) 打赏

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部
{__SCRIPT__}