- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
为什么不能编译?
interface ITest { ... }
class Test implements ITest { ... }
class Factory<T extends ITest> {
constructor(private _Test: typeof Test) { }
create(): T {
return new this._Test();
}
}
它给出 Type 'Test' is not assignable to type 'T'. (property) Factory<T extends ITest>._Test: new () => Test
.
我怎样才能让它发挥作用
create(): ITest
或通过
private _Test: any
两者都不会真正传达(代码方面)我所追求的。有什么办法可以让它发挥作用吗?
最佳答案
Why doesn't this compile?
它无法编译,因为 _Test
的类型是 typeof Test
。这可能会令人困惑,所以让我尝试将其分解:
Typescript 将“类型”添加到 javascript 的世界中,让您可以说“我希望这个对象拥有所有这些可用的属性和操作。”。本质上,这都是一个 type system
Typescript 有 typeof
运算符,它的作用类似于 type query当在类型注释(:
)的右侧使用时,作为从实例化对象中获取“类型” 的方法。 typeof
为您提供了一种方式来表达“无论此对象具有什么属性和操作,我都想捕获它们并重新使用它们来检查另一个对象的类型”。
下面是使用此 typeof
运算符的示例。
let myObject = {
a: 'a string',
b: 5,
c: false
};
// notice that the `typeof` operator is on the right of the `:`
function takesATypeOfMyObject(obj: typeof myObject) {
// highlight over `a`, `b`, or `c` to see their type
obj.a // (property) a: string
obj.b // (property) b: number
obj.c // (property) c: boolean
}
myObject
是一个普通的 javascript 对象文字。函数takesATypeOfMyObject
是一个带有一个参数obj
的函数,类型注释为typeof myObject
。这个函数表示它可以接收任何与对象 myObject
具有相同属性的对象。
这不要与 javascript 的 typeof
混淆。只返回字符串的运算符。 Typescript 的 typeof
运算符是其类型系统的一部分。请记住,当 typescript 被编译为 javascript 时,类型和类型注释就会消失。
另一个需要理解的重要事情是 typescript 中的类是如何工作的。类(class)是一把双刃剑。在 typescript 中,类同时充当:
函数
中一样,你可以用new
调用来获取提到的类型使用类型注释 typeof MyClass
可能很诱人,但这很可能不是您想要的。
考虑下面的例子:
// define a class Animal
// this creates the type definition of `Animal` as well as
// the constructor to create an `Animal`
class Animal {
makeNosie() { return 'grrr'; }
}
// use the constructor to create an object of type `Animal`
let myAnimal = new Animal();
// now `myAnimal` has an inferred type of `Animal`
// declare an object to of type `Animal` but instead of using
// the `Animal` constructor, just define an object literal that
// conforms to the type of Animal
let dog: Animal = {
makeNosie: () => 'woof'
};
// the type of dog has been declared explicitly and typescript
// just checks to see if it conforms to the type
希望您看到,如果您希望对象符合类创建的类型,则不要使用 typeof
运算符,您只需说“Animal”,而不是 动物类型
。
但这让我们想到了一个问题:如果您这样做会怎样?
请记住,typeof
运算符会 try catch 要重用的类型。由于 class
es 定义了类型和 new
able 函数来创建该类型的对象,typeof Animal
实际上在做什么正在查询 Animal 的构造函数类型。
好的,现在我们终于可以深入了解您的代码以了解为什么它无法编译。以下是您粘贴的原始代码:
interface ITest { }
class Test implements ITest { }
class Factory<T extends ITest> {
constructor(private _Test: typeof Test) { }
create(): T {
return new this._Test();
}
}
看看Factory
的构造函数
。你用这段代码说的是“我的类 Factory
的 constructor
采用任何符合 Test 构造函数的对象。这是一种非常复杂的类型(可能不是你想要的)。
改为尝试此代码:
interface ITest { }
class Test implements ITest { }
class Factory<T extends ITest> {
constructor(private _Test: new() => T) { }
create(): T {
return new this._Test();
}
}
_Test
的类型描述已更改为 new() => T
,表示“Factory 的构造函数接受任何 new
able 函数返回 T
类型。
希望这就是您想要的。
我希望我已经帮助您解决了您的问题,并向您展示了 typescript 的强大之处。 Typescript 正在尝试做一件非常雄心勃勃和疯狂的事情:向任何可能的 javascript 添加完整类型。我认为他们做得很好。
关于typescript - 类型不可分配给泛型类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43300008/
我正在尝试将抓取的 xml 输出写入 json。由于项目不可序列化,抓取失败。 从这个问题来看,它建议您需要构建一个管道,未提供的答案超出了问题 SO scrapy serializer 的范围。 所
有没有一种方法可以通过重载函数来区分参数是在编译时可评估还是仅在运行时可评估? 假设我有以下功能: std::string lookup(int x) { return table::va
我正在使用 MVVM 模式编写一个应用程序。我通过将 View 的 DataContext 属性设置为 ViewModel 的实例来向 View 提供数据。一般来说,我只是从那里使用 Binding
对于一个项目,我正在使用带有简单 python module 的传感器收集多个红外命令。 . 我收到如下字节字符串: commando1= b'7g4770CQfwCTVT9bQDAzVEBMagGR
我有一个计算方法,可以在用户使用 Cartridge 作为我的商店框架结账时计算税费。 税 = 税 * 小数(str(settings.SHOP_DEFAULT_TAX_RATE)) 计算工作正常。然
我正在用 pygame 制作一个绘图程序,我想在其中为用户提供一个选项来保存程序的确切状态,然后在稍后重新加载它。在这一点上,我保存了我的全局字典的副本,然后遍历, pickle 每个对象。 pyga
在 C++11 之前,我可以使用它来使类不可复制: private: MyClass(const MyClass&); MyClass& operator=(const MyClass&); 使用 C
大家好 :) 我在我的 VC++ 项目中使用 1.5.4-all (2014-10-22)(适用于 x86 平台的 Microsoft Visual C++ 编译器 18.00.21005.1)。 我
我有一个 python 文件:analysis.py: def svm_analyze_AHE(file_name): # obtain abp file testdata = pd.
这个问题已经有答案了: How to serialize SqlAlchemy result to JSON? (37 个回答) 已关闭 4 年前。 我正在编写小查询来从 mysql 获取数据数据库,
我是 Python 初学者,我在 JSON 方面遇到了一些问题。在我正在使用的教程中有两个函数: def read_json(filename): data = [] if os.pa
我目前正在开发一个针对 iPad 的基于 HTML5 Canvas/JavaScript 的小型绘图应用程序。它在 Safari 中运行。到目前为止,除了一件事之外,一切都进展顺利。 如果我旋转设备,
以下代码无法使用 Visual Studio 2013 编译: #include struct X { X() = default; X(const X&) = delete;
嗨,我制作了一个文本分类分类器,我在其中使用了它,它返回一个数组,我想返回 jsonresponse,但最后一行代码给我错误 'array(['cycling'], dtype =object) 不可
我使用 Flask 和 Flask-Login 进行用户身份验证。 Flask-Sqlalchemy 将这些模型存储在 sqlite 数据库中: ROLE_USER = 0 ROLE_ADMIN =
如果您尝试发送不可 JSON 序列化的对象(列表、字典、整数等以外的任何对象),您会收到以下错误消息: "errorMessage": "Object of type set is not JSON
我在尝试 move std::vector 时遇到崩溃其中 T显然是不可 move 的(没有定义 move 构造函数/赋值运算符,它包含内部指针) 但为什么 vector 的 move 函数要调用 T
我尝试在用户成功登录后将 token 返回给他们,但不断收到以下错误: 类型错误:“字节”类型的对象不可 JSON 序列化 我该如何解决这个问题?这是我到目前为止的代码: if user:
我是一名优秀的程序员,十分优秀!