- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
在我的项目中,我时不时地创建带有构造函数的类,这些构造函数缓存它们创建的对象,这样如果多次使用相同的参数调用构造函数,它每次都会返回相同的实例,而不是创建一个新的实例与已经创建的相同。
这是一个最小的例子:
class X {
private static __cache: Record<string, X> = Object.create(null);
readonly name: string; // The compilation error happens on this line.
constructor(name: string) {
const cached = X.__cache[name];
if (cached !== undefined) {
return cached;
}
this.name = name;
X.__cache[name] = this;
}
}
这段代码在 TypeScript 上工作得很好,直到我转到 2.7 并打开 strictPropertyInitialization
。现在我在 readonly name: string;
上得到一个错误说
Property 'name' has no initializer and is not definitely assigned in the constructor.
我的项目中有多个具有上述模式的类,因此我需要想出一个或多个通用解决方案来消除错误。
我不想要的两个解决方案:
关闭strictPropertyInitialization
。我发现它通常太有用了,无法将其关闭。打开它会显示一些需要更新的定义,以更好地反射(reflect)我的一些类的工作方式,或者提示改进初始化代码。
为name
添加一个明确的赋值断言,使其声明为readonly name!: string;
。感叹号导致 TypeScript 不再检查 name
是否已明确分配。这消除了错误,但它也在编译器检查我的口味时打了一个太大的洞。例如,如果我使用断言并且不小心在上面的代码中删除了赋值 this.name = name
,则 TypeScript 不会引发错误。我喜欢尽早收到错误通知。
我在上面给出了一个最小的例子,但在我的应用程序中,我有包含更多字段的类,或者是通过非常昂贵的计算创建的字段,而不仅仅是从构造函数参数中分配的字段。
最佳答案
对于对象字段的计算成本很高的情况,到目前为止我首选的解决方案是将 constructor
标记为 private
(protected
可能在某些情况下指示)并将工厂函数声明为类的静态成员。像这样:
class X2 {
private static __cache: Record<string, X2> = Object.create(null);
readonly name: string;
private constructor(nameSource: string) {
this.name = expensiveComputation(nameSource);
}
// We use this factory function to create new objects instead of
// using `new X2` directly.
static make(name: string): X2 {
const cached = X2.__cache[name];
if (cached !== undefined) {
return cached;
}
return X2.__cache[name] = new X2(name);
}
}
因为构造函数总是设置它的所有字段,所以 TypeScript 不再有问题。这就要求使用类的代码使用工厂函数来创建新对象,而不是直接使用构造函数。
关于typescript - 缓存构造函数导致 "Property ' .. .' has no initializer and is not definitely assigned in the constructor.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48601943/
在嵌入式系统的背景下,给出以下函数结构: 返回变量的条件赋值: int foo(int x) { int status; if (is_valid(x)) {
#input |--IDs-|--Value-| |--da1-|--100---| |--da2-|---80---| |--da3-|--200---| |--da4-|--300---| |--
您可以declare a list of variables and assign them some value在 Perl 6 my ($a, $b) = 33,44 # $a will be 3
在下面的代码中实现对象的浅拷贝,但是不同的输出让我很困惑: 对象.分配: var obj = { name: 'wsscat', age: 0, add: { a: 'beijin
我正在查看一位已不复存在的开发人员的一些旧代码,并注意到有时他使用 Object.assign({}, xyz) 还有他用过的其他东西 Object.assign([], abc); 两者有区别吗?
这个问题在这里已经有了答案: Why were ES5 Object methods not added to Object.prototype? (2 个答案) 关闭 4 个月前。 我正在做一个
我想知道这之间的区别: Object.assign(otherObject, { someNewProperty: '' }); 和 otherObject.someNewProperty = '
考虑以下代码: const defaultState = () => { return { profile: { id: '', displayName: '',
我刚刚偶然发现this line of TS code : const { title = item.text } = item; 这似乎是一个destructuring assigment但是大括号
我是一个没有经验的 JavaScript 用户,正在阅读这本书 CoffeeScript: Accelerated JavaScript Development ,其中作者制作了一种 Scrabble
当我查看日志文件时 D:\SAS\XXX\Lev1\SASMain\BatchServer\Logs 我看到了这两行 NOTE: Libref TESTLIB successfully assigne
我似乎不明白为什么要使用移动赋值运算符: CLASSA & operator=(CLASSA && other); //move assignment operator 结束了,复制赋值运算符: CL
在Eiffel Studio中,我一直试图访问从另一个类定义的一个类的对象的字段。但是,它不断给出我无法理解和解决的错误。以下是示例代码片段: 创建对象的类: class TEST1 feat
为什么这个片段在 Node (10.5) .then(function() { this = {...this, ...payload}; this.update();
我在我的 React 应用程序中使用以下包来生成 Recaptcha 组件:https://github.com/appleboy/react-recaptcha 组件如下所示,带有 eslint 警
我有以下代码: #include #include using std::cout; struct SomeType { SomeType() {} SomeType(const Some
我有这个代码示例: var a = 10; ({a}) = 0; 在 Google Chrome 中,它显示错误:SyntaxError:无效的解构赋值目标 在 Firefox 中,它显示错误:Ref
我有一个函数,用于对两个输入字段的输入求和并将其分配给一个。我的函数如下所示: function sum(id) { nextId = id+2 console.log
我收到这个警告 "Automatic Reference Counting Issue: Assigning retained object to unsafe_unretained variable
在使用 Shopify 的 Liquid 语言编码时,我注意到使用以下语法分配了一些变量: {%- assign variable = value -%} 和使用以下语法分配的其他变量: {% ass
我是一名优秀的程序员,十分优秀!