码迷,mamicode.com
首页 > 其他好文 > 详细

typescript

时间:2018-11-01 17:01:47      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:rip   vat   return   cto   span   script   ons   var   div   

class  Person {
    public name:string;
    private age:number;
    constructor(name:string,age:number){
        this.name = name;
        this.age = age;
    }
    public run(){
        return this.name+this.age
    }

}

var p = new Person(‘张三‘,40);
p.run();
p.name;

 

typescript

标签:rip   vat   return   cto   span   script   ons   var   div   

原文地址:https://www.cnblogs.com/jentary/p/9889994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!