【LayaBox笔记原创一】LayaBox引入自定义第三方包

【LayaBox笔记一】LayaBox引入自定义第三方包

1、创建Laya项目,选择ts语言

2、编写Laya类,例如我们创建一个com.company.Person类

【LayaBox笔记原创一】LayaBox引入自定义第三方包

【LayaBox笔记原创一】LayaBox引入自定义第三方包

1 /** 2 * 创建一个Person例子 3 * @author wls 4 * @date 2015-01-10 5 */ 6 module com.company { 7 export class Person { 8 public name: string; //公有属性 9 private id: number; //私有属性 10 private _age: number; //私有属性,用于getset访问器 11 private static _sex: string; //静态属性, 用于get访问器 12 13 //带参数构造函数 14 constructor(id: number) { 15 this.id = id; 16 } 17 18 public get age(): number { 19 return this._age; 20 } 21 public set age(value: number) { 22 this._age = value; 23 } 24 25 public static get sex(): string { 26 return this._sex; 27 } 28 29 public static set sex(value: string) { 30 this._sex = value; 31 } 32 33 public get Id(): number { 34 return this.id; 35 } 36 } 37 }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wspfpy.html