• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Typescript 入门(三)-类

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

一、在ES5中类定义和继承 

1、定义类
function Peson(name,age){
 this.name = name;
 this.age = age;

Person.prototype.display = function(){
 console.log(this.name + '\t'+ this.age)
}
var p = new Person();

2、静态方法
Person.disp = function(){
    console.log('我是静态方法')
}

3、继承
function Man(name,age){
    Person.call(this,[name,age]);
    this.sex = 1;
}
Man.prototype = Person.prototype ;
var man = new Man('zzz',12);
man.display();

二、在TS中类定义和继承 

1、类定义
class Animal {
    //定义属性
    public name:string;
    // 构造函数
    constructor(name:string){
        this.name = name;
    }
   // 方法
    display():void{
        console.log(this.name);
    }
}
var animal = new Animal("cat");

2、继承 
class Cat extends Animal {
    constructor(name:string){
        super(name);
    }
}

3、类的修饰符
public /protected/private
public  在当前类、子类、类外部都可以访问
protected  在当前类、子类可以访问,类外部不能访问
private 在当前类可以访问,子类和类外部不能访问
如果不写是公有的属性

4、静态属性和静态方法
class Dog extends Animal {
    private age:number;
    // 静态属性
    private static count:number = 1;
    constructor(name:string,age:number){
        super(name);
        this.age = age;
    }
    // 静态方法
    static print():void {
        console.log("print" + Dog.count)
    }
}
Dog.print();

5、多态
class Animal {
    private name:string;
    constructor(name:string){
        this.name = name;
    }
    public eat():void{
        console.log("eat");
    }
}
// 具体的子类实现eat方法
class Dog extends Animal {
    constructor(name:string){
        super(name);
    }
    public eat() : void {
    }
}

6、抽象类、抽象方法
abstract class Animal {
    private name:string;
    constructor(name:string){
        this.name = name;
    }
    public abstract eat():void;
}
class Dog extends Animal {
    constructor(name:string){
        super(name);
    }
    public eat():void{
    }
}

一、在ES5中类定义和继承 

1、定义类
function Peson(name,age){
 this.name = name;
 this.age = age;

Person.prototype.display = function(){
 console.log(this.name + '\t'+ this.age)
}
var p = new Person();

2、静态方法
Person.disp = function(){
    console.log('我是静态方法')
}

3、继承
function Man(name,age){
    Person.call(this,[name,age]);
    this.sex = 1;
}
Man.prototype = Person.prototype ;
var man = new Man('zzz',12);
man.display();

二、在TS中类定义和继承 

1、类定义
class Animal {
    //定义属性
    public name:string;
    // 构造函数
    constructor(name:string){
        this.name = name;
    }
   // 方法
    display():void{
        console.log(this.name);
    }
}
var animal = new Animal("cat");

2、继承 
class Cat extends Animal {
    constructor(name:string){
        super(name);
    }
}

3、类的修饰符
public /protected/private
public  在当前类、子类、类外部都可以访问
protected  在当前类、子类可以访问,类外部不能访问
private 在当前类可以访问,子类和类外部不能访问
如果不写是公有的属性

4、静态属性和静态方法
class Dog extends Animal {
    private age:number;
    // 静态属性
    private static count:number = 1;
    constructor(name:string,age:number){
        super(name);
        this.age = age;
    }
    // 静态方法
    static print():void {
        console.log("print" + Dog.count)
    }
}
Dog.print();

5、多态
class Animal {
    private name:string;
    constructor(name:string){
        this.name = name;
    }
    public eat():void{
        console.log("eat");
    }
}
// 具体的子类实现eat方法
class Dog extends Animal {
    constructor(name:string){
        super(name);
    }
    public eat() : void {
    }
}

6、抽象类、抽象方法
abstract class Animal {
    private name:string;
    constructor(name:string){
        this.name = name;
    }
    public abstract eat():void;
}
class Dog extends Animal {
    constructor(name:string){
        super(name);
    }
    public eat():void{
    }
}


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Vue3、Vuex、Typescript 项目实践、工具类封装发布时间:2022-07-18
下一篇:
typescript3.7中值得注意的3个新特性发布时间:2022-07-18
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap