gpt4 book ai didi

kotlin - Kotlin:类Pair 需要2个类型参数-如何声明对的类型?

转载 作者:行者123 更新时间:2023-12-02 13:09:27 24 4
gpt4 key购买 nike

在Kotlin中,如何将类型添加到一对颜色中:

var pair = Pair(Color.RED, Color.WHITE)

上面的冒号之后会怎样?

我需要知道,因为我需要声明一个 pegColours数组,但是以下内容得到了错误 2 type arguments expected for class Pair<out A, out B>
lateinit private var pegColours: Array<Pair>

最佳答案

Pair<out A, out B> 有两个类型参数,您需要指定:

lateinit private var pegColours: Array<Pair<Color,Color>>

关于kotlin - Kotlin:类Pair <out A,out B>需要2个类型参数-如何声明对的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48657668/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com