Dart, constraints on Generics?

强颜欢笑 提交于 2019-12-06 17:55:30

问题


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{

}

回答1:


You can specify type constraints like this :

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

The language specification says :

A type parameter T may be suffixed with an extends clause that specifies the upper bound for T. If no extends clause is present, the upper bound is Object. It is a static type warning if a type parameter is a supertype of its upper bound. The bounds of type variables are a form of type annotation and have no effect on execution in production mode.



来源:https://stackoverflow.com/questions/18698873/dart-constraints-on-generics

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!