- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
在 Typescript 中,如何在编译时将泛型类型限制为多个类之一?例如,如何实现这个伪代码?
class VariablyTyped<T has one of types A or B or C> {
method(hasOneType: T) {
if T has type A:
do something assuming type A
if T has type B:
do something assuming type B
if T has type C:
do something assuming type C
}
}
此外,我希望能够将属性(或任何变量)分配给泛型类型选项之一的特定后代类型,而不仅仅是给定类型之一。例如:
class VariablyTyped<T has one of types A or B or C> {
descendentClassOfT: T
method(hasOneType: T) {
descendentClassOfT = hasOneType
}
}
class D extends class C {
methodUniqueToD() { }
}
const v = new VariablyTyped(new D())
v.descendentClassOfT.methodUniqueToD()
这个答案显然不是很明显,因为我花了好几个小时在上面。在我看来,这个问题的某种形式 had already been asked ,但给出的解决方案甚至不适合我。可能只是在非常具体的上下文中回答了先前的问题,因为赞成票的数量表明它正在解决一些人的问题。
我发布这个新问题是为了清楚地说明一般问题并跟进解决方案。
最佳答案
我为此苦思了几个小时,但回想起来,解决方案似乎显而易见。首先我介绍解决方案,然后将其与之前的方法进行比较。 (在 Typescript 2.6.2 中测试。)
// WORKING SOLUTION: union of types with type checks
class MustBeThis {
method1() { }
}
class OrThis {
method2() { }
}
abstract class OrOfThisBaseType {
method3a() { }
}
class ExtendsBaseType extends OrOfThisBaseType {
method3b() { }
}
class GoodVariablyTyped<T extends MustBeThis | OrThis | OrOfThisBaseType> {
extendsBaseType: T;
constructor(hasOneType: T) {
if (hasOneType instanceof MustBeThis) {
hasOneType.method1();
}
else if (hasOneType instanceof OrThis) {
hasOneType.method2();
}
// either type-check here (as implemented) or typecast (commented out)
else if (hasOneType instanceof OrOfThisBaseType) {
hasOneType.method3a();
// (<OrOfThisBaseType>hasOneType).method3a();
this.extendsBaseType = hasOneType;
}
}
}
此解决方案的以下检查编译正常:
const g1 = new GoodVariablyTyped(new MustBeThis());
const g1t = new GoodVariablyTyped<MustBeThis>(new MustBeThis());
const g1e: MustBeThis = g1.extendsBaseType;
const g1te: MustBeThis = g1t.extendsBaseType;
const g2 = new GoodVariablyTyped(new OrThis());
const g2t = new GoodVariablyTyped<OrThis>(new OrThis());
const g2e: OrThis = g2.extendsBaseType;
const g2te: OrThis = g2t.extendsBaseType;
const g3 = new GoodVariablyTyped(new ExtendsBaseType());
const g3t = new GoodVariablyTyped<ExtendsBaseType>(new ExtendsBaseType());
const g3e: ExtendsBaseType = g3.extendsBaseType;
const g3te: ExtendsBaseType = g3t.extendsBaseType;
将上述方法与 previously accepted answer 进行比较将泛型声明为类选项的交集:
// NON-WORKING SOLUTION A: intersection of types
class BadVariablyTyped_A<T extends MustBeThis & OrThis & OrOfThisBaseType> {
extendsBaseType: T;
constructor(hasOneType: T) {
if (hasOneType instanceof MustBeThis) {
(<MustBeThis>hasOneType).method1();
}
// ERROR: The left-hand side of an 'instanceof' expression must be of type
// 'any', an object type or a type parameter. (parameter) hasOneType: never
else if (hasOneType instanceof OrThis) {
(<OrThis>hasOneType).method2();
}
else {
(<OrOfThisBaseType>hasOneType).method3a();
this.extendsBaseType = hasOneType;
}
}
}
// ERROR: Property 'method2' is missing in type 'MustBeThis'.
const b1_A = new BadVariablyTyped_A(new MustBeThis());
// ERROR: Property 'method2' is missing in type 'MustBeThis'.
const b1t_A = new BadVariablyTyped_A<MustBeThis>(new MustBeThis());
// ERROR: Property 'method1' is missing in type 'OrThis'.
const b2_A = new BadVariablyTyped_A(new OrThis());
// ERROR: Property 'method1' is missing in type 'OrThis'.
const b2t_A = new BadVariablyTyped_A<OrThis>(new OrThis());
// ERROR: Property 'method1' is missing in type 'ExtendsBaseType'.
const b3_A = new BadVariablyTyped_A(new ExtendsBaseType());
// ERROR: Property 'method1' is missing in type 'ExtendsBaseType'.
const b3t_A = new BadVariablyTyped_A<ExtendsBaseType>(new ExtendsBaseType());
还将上述工作方法与 another suggested solution 进行比较其中泛型类型被限制为扩展一个实现所有类接口(interface)选项的接口(interface)。此处发生的错误表明它在逻辑上与先前的无效解决方案相同。
// NON-WORKING SOLUTION B: multiply-extended interface
interface VariableType extends MustBeThis, OrThis, OrOfThisBaseType { }
class BadVariablyTyped_B<T extends VariableType> {
extendsBaseType: T;
constructor(hasOneType: T) {
if (hasOneType instanceof MustBeThis) {
(<MustBeThis>hasOneType).method1();
}
// ERROR: The left-hand side of an 'instanceof' expression must be of type
// 'any', an object type or a type parameter. (parameter) hasOneType: never
else if (hasOneType instanceof OrThis) {
(<OrThis>hasOneType).method2();
}
else {
(<OrOfThisBaseType>hasOneType).method3a();
this.extendsBaseType = hasOneType;
}
}
}
// ERROR: Property 'method2' is missing in type 'MustBeThis'.
const b1_B = new BadVariablyTyped_B(new MustBeThis());
// ERROR: Property 'method2' is missing in type 'MustBeThis'.
const b1t_B = new BadVariablyTyped_B<MustBeThis>(new MustBeThis());
// ERROR: Property 'method1' is missing in type 'OrThis'.
const b2_B = new BadVariablyTyped_B(new OrThis());
// ERROR: Property 'method1' is missing in type 'OrThis'.
const b2t_B = new BadVariablyTyped_B<OrThis>(new OrThis());
// ERROR: Property 'method1' is missing in type 'ExtendsBaseType'.
const b3_B = new BadVariablyTyped_B(new ExtendsBaseType());
// ERROR: Property 'method1' is missing in type 'ExtendsBaseType'.
const bt_B = new BadVariablyTyped_B<ExtendsBaseType>(new ExtendsBaseType());
具有讽刺意味的是,我后来解决了我的特定于应用程序的问题,而不必限制通用类型。也许其他人应该吸取我的教训,首先尝试找到另一种更好的方法来完成这项工作。
关于typescript - 将泛型类型限制为 Typescript 中的几个类之一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48539710/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!