gpt4 book ai didi

Scala,通用元组

转载 作者:行者123 更新时间:2023-12-04 00:53:54 24 4
gpt4 key购买 nike

我有一个可以接受任何大小的元组的通用方法,唯一的限制是这个元组的第一个元素应该是类型 MyClass .

像这样的东西:

trait MyTrait[T <: (MyClass, _*)] {
getMyClass(x: T): MyClass = x._1
}

我试过这个
trait MyTrait[T <: (MyClass, _) with (MyClass, _, _) with (MyClass, _, _) with ...] {
getMyClass(x: T): MyClass = x._1
}

但我收到错误 unboud wildcard type

最佳答案

这有点不安全,但在这种情况下您可以使用 Structural 类型:

trait MyTrait {
def getMyClass(x: {def _1: MyClass}): MyClass = x._1
}

关于Scala,通用元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53739656/

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