作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在写一个树实用程序,需要能够传递一些匿名函数。我喜欢在可能的地方进行强类型化,并且我知道可以通过使用动力学来实现。
我要创建的typedef将返回models键和parentKey,以便树处理程序可以从平面集合中生成树。
这是我的伪代码:
typedef KeySelector<T> = dynamic Function<T>(T item);
/// The handler for tree structures
class TreeHandler<T> {
/// The items in a flattened structure
final List<T> items;
/// Selector function for an items key
final KeySelector<T> keySelector;
/// Selector function for an items parent key
final KeySelector<T> parentKeySelector;
/// The actual tree the items
/// are converted into
List<TreeNode<T>> tree;
TreeHandler(this.items, this.keySelector, this.parentKeySelector);
}
class MyModel {
MyModel({this.id, this.parentId});
int id;
int parentId;
}
_treeHandler = TreeHandler<MyModel>(
null,
<MyModel>(MyModel m) => m.id,
<MyModel>(MyModel m) => m.parentId,
);
_treeHandler = TreeHandler<MyModel>(
null,
<MyModel>(dynamic m) => m.id,
<MyModel>(dynamic m) => m.parentId,
);
最佳答案
这对我有用
typedef KeySelector<T> = dynamic Function(T item);
class TreeNode<T> {}
/// The handler for tree structures
class TreeHandler<T> {
/// The items in a flattened structure
final List<T> items;
/// Selector function for an items key
final KeySelector<T> keySelector;
/// Selector function for an items parent key
final KeySelector<T> parentKeySelector;
/// The actual tree the items
/// are converted into
List<TreeNode<T>> tree;
TreeHandler(this.items, this.keySelector, this.parentKeySelector);
}
class MyModel {
MyModel({this.id, this.parentId});
int id;
int parentId;
}
void main() {
var _treeHandler = TreeHandler<MyModel>(
null,
(MyModel m) => m.id,
(MyModel m) => m.parentId,
);
}
typedef KeySelector<T> = dynamic Function<T>(T item);
KeySelector<T>
为typedef引入了通用参数
T
,而
Function<T>
为通用函数引入了通用参数
T
。
typedef KeySelector<T> = dynamic Function(T item);
关于generics - Typedef函数中的泛型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54386671/
我是一名优秀的程序员,十分优秀!