单个属性
重写
检查此可迭代对象只有一个元素,并返回该元素。
如果 this
为空或包含多个元素,则抛出 StateError。此操作不会遍历到第二个元素。
实现
Touch get single {
int len = this.length;
if (len == 1) {
return JS('Touch', '#[0]', this);
}
if (len == 0) throw new StateError("No elements");
throw new StateError("More than one element");
}