如何让方法的返回值根据构造函数的参数返回正确的类型?

想根据构造函数的参数,在我的类里返回不同的类。也就是多态。
如果是纯js很好实现。但是用ts,却不能得到正确的类型。
提这个问题主要是想知道怎么在ts里实现这个多态的效果。


class Test {
  constructor(private bl:boolean){

  }
  getValue(){
    if(this.bl) {
      return "1"
    } else {
      return "2"
    }
  }
}

const t = new Test(false);

// ts推断result的类型时"1"|"2"。
// 而没有根据构造函数的参数推断成"2"
const result = t.getValue();
阅读 2.8k
2 个回答

在线示例

class Test {
    public getValue(bl: true): "1"
    public getValue(bl: false): "2"
    public getValue(bl: boolean) {
        if (bl) {
            return "1"
        } else {
            return "2"
        }
    }
}

const ins = new Test()
const result1 = ins.getValue(true) // ts推断 result1 类型为"1"
const result2 = ins.getValue(false)// ts推断 result2 类型为"2"
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进