为了账号安全,请及时绑定邮箱和手机立即绑定

TypeScript - 如何防止在构造函数中用变量覆盖类方法

TypeScript - 如何防止在构造函数中用变量覆盖类方法

慕码人2483693 2021-07-10 15:02:36
我有一个很大的代码库,其中一些类成员设置了两次 - 一次作为方法,另一个明确地在构造函数中。下面是一个示例:class SuperHero {    public name: string;    constructor(name: string) {        this.name = name;        // This line is a problem.        this.hasCape = () => {            return this.name === 'Batman';        };    }    // I want this to be the canonical implementation.    public hasCape() {        return this.name === 'Batman' || this.name === 'Wonder Woman';    }}看起来public readonly hasCape()是无效的语法。有没有办法在编译器或 linter 级别将方法声明强制为规范?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 195 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信