module es { /** * 使得number/string/boolean类型作为对象引用来进行传递 */ export class Ref { public value: T; constructor(value: T){ this.value = value; } } }