“projections are not allowed for immediate arguments of a supertype” Kotlin Android Studio

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-03 11:02:56

问题


I am getting this error when I converted Java to Kotlin:

Java

public class HeaderTab extends ExpandableGroup {
    private String header;

    public HeaderTab(String title, List items) {
        super(title, items);
    }
}

Kotlin

class HeaderTab(title: String, items: List<*>) : ExpandableGroup<*>(title, items) {
    private val header: String? = null
}

Android Studio says this:

projections are not allowed for immediate arguments of a supertype

What do I need to modify here?


回答1:


Use Any for a quick fix, or introduce a type parameter to make sure you don't break the type safety of the library.

class HeaderTab(title: String, items: List<*>) : ExpandableGroup<Any>(title, items) {

or

class HeaderTab<E>(title: String, items: List<E>) : ExpandableGroup<E>(title, items) {

The problem is that kotlin requires class types to be fully specified, so you can either specify a specific type as a type parameter or pass through a new type parameter.



来源:https://stackoverflow.com/questions/44058972/projections-are-not-allowed-for-immediate-arguments-of-a-supertype-kotlin-andr

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