gpt4 book ai didi

scala 元组拆包

转载 作者:行者123 更新时间:2023-12-03 05:00:35 24 4
gpt4 key购买 nike

我知道这个问题已经以不同的方式出现过很多次。但我仍然不清楚。有没有办法实现以下目标。

def foo(a:Int, b:Int) = {}

foo(a,b) //right way to invoke foo

foo(getParams) // is there a way to get this working without explicitly unpacking the tuple??

def getParams = {
//Some calculations
(a,b) //where a & b are Int
}

最佳答案

这是一个两步过程。首先将 foo 转为函数,然后对其调用 tupled 使其成为元组的函数。

(foo _).tupled(getParams)

关于scala 元组拆包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3568002/

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