语法糖:_* 用于将 Seq 视为方法参数

发布于 2024-10-03 02:25:27 字数 158 浏览 1 评论 0原文

我刚刚在网络上的某个地方注意到这个构造:

val list = List(someCollection: _*)

_* 是什么意思?这是某些方法调用的语法糖吗?我的自定义类应该满足哪些约束才能利用此语法糖?

I just noticed this construct somewhere on web:

val list = List(someCollection: _*)

What does _* mean? Is this a syntax sugar for some method call? What constraints should my custom class satisfy so that it can take advantage of this syntax sugar?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

〆凄凉。 2024-10-10 02:25:27

通常,: 表示法用于类型归属,强制编译器将值视为某种特定类型。这与强制转换不太相同。

val b = 1 : Byte
val f = 1 : Float
val d = 1 : Double

在本例中,您将指定特殊的 varargs 类型。这反映了用于声明 varargs 参数的星号表示法,并且可以用于子类 Seq[T] 的任何类型的变量:

def f(args: String*) = ... //varargs parameter, use as an Array[String]
val list = List("a", "b", "c")
f(list : _*)

Generally, the : notation is used for type ascription, forcing the compiler to see a value as some particular type. This is not quite the same as casting.

val b = 1 : Byte
val f = 1 : Float
val d = 1 : Double

In this case, you're ascribing the special varargs type. This mirrors the asterisk notation used for declaring a varargs parameter and can be used on a variable of any type that subclasses Seq[T]:

def f(args: String*) = ... //varargs parameter, use as an Array[String]
val list = List("a", "b", "c")
f(list : _*)
紫罗兰の梦幻 2024-10-10 02:25:27

这是用于分解数组的 scala 语法。某些函数采用可变数量的参数,并且要传入数组,您需要将 : _* 附加到数组参数。

That's scala syntax for exploding an array. Some functions take a variable number of arguments and to pass in an array you need to append : _* to the array argument.

揽月 2024-10-10 02:25:27

变量(数量)参数使用 * 定义。
例如,

def wordcount(words: String*) = println(words.size)

wordcount 需要一个字符串作为参数,

scala> wordcount("I")
1

但接受更多字符串作为其输入参数(类型归属需要 _*)

scala> val wordList = List("I", "love", "Scala")
scala> wordcount(wordList: _*)
3

Variable (number of) Arguments are defined using *.
For example,

def wordcount(words: String*) = println(words.size)

wordcount expects a string as parameter,

scala> wordcount("I")
1

but accepts more Strings as its input parameter (_* is needed for Type Ascription)

scala> val wordList = List("I", "love", "Scala")
scala> wordcount(wordList: _*)
3
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文