我有以下简单的Kotlin扩展功能:
// Get the views of ViewGroup
inline val ViewGroup.views: List
get() = (0..childCount - 1).map { getChildAt(it) }
// Get the views of ViewGroup of given type
inline fun ViewGroup.getViewsOfType() : List {
return this.views.filterIsInstance()
}
此代码编译并正常工作.但是,我希望函数getViewsOfType是一个属性,就像视图一样. Android Studio甚至建议它.我让AS进行重构,它会生成以下代码:
inline val ViewGroup.viewsOfType: List
get() = this.views.filterIsInstance()
但是这段代码没有编译.它会导致错误:“属性的类型参数必须在其接收器类型中使用”
这是什么问题?搜索有关此错误的帮助似乎不会导致答案.