举报投诉联系我们 手机版 热门标签 名动网
您的位置:名动网 > typescript prototype TypeScript Prototype属性

typescript prototype TypeScript Prototype属性

2023-04-16 12:20 TypeScript教程

typescript prototype TypeScript Prototype属性

typescript prototype TypeScript Prototype属性

typescript prototype

TypeScript Prototype属性

prototype属性允许您向对象添加属性和方法。

示例

function employee(id:number,name:string) { 
   this.id = id 
   this.name = name 
} 
var emp = new employee(123,"Smith") 
employee.prototype.email="smith@abc.com" 
console.log("Employee 's Id: "+emp.id) 
console.log("Employee's name: "+emp.name) 
console.log("Employee's Email ID: "+emp.email)

在编译时,它将生成以下JavaScript代码:

//Generated by typescript 1.8.10 
function employee(id, name) { 
   this.id = id; 
   this.name = name; 
} 
var emp = new employee(123, "Smith"); 
employee.prototype.email = "smith@abc.com"; 
console.log("Employee 's Id: " + emp.id); 
console.log("Employee's name: " + emp.name); 
console.log("Employee's Email ID: " + emp.email);

其输出如下:

Employee’s Id: 123 
Emaployee’s name: Smith 
Employee’s Email ID: smith@abc.com
阅读全文
以上是名动网为你收集整理的typescript prototype TypeScript Prototype属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 名动网 mdwl.vip 版权所有 联系我们