本文介绍了飞镖,对泛型有限制吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有cart功能的Dart等效语法来指定通用类型的类型约束,例如以类似C#的语法,其中TBase为SomeType

Is there a Dart equivalent syntax to the c# ability to specify type constraints on a generic type, e.g. in C#-like syntax where TBase is SomeType:

class StackPanel<TBase> extends Panel<TBase> where TBase : SomeType{

}


推荐答案

您可以这样指定类型约束:

You can specify type constraints like this :

class StackPanel<TBase extends SomeType> extends Panel<TBase> {
}

说:

这篇关于飞镖,对泛型有限制吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-04 20:47