gpt4 book ai didi

Scala将Option [T]转换为String

转载 作者:行者123 更新时间:2023-12-04 16:31:10 24 4
gpt4 key购买 nike

在scala中是否存在与之等效的任何 native 功能?

def strConvert[T](v: Option[T]): String = {
if (v.isDefined)
v.get.toString
else
""
}

最佳答案

对于通用T,可以避免使用map的if-v.map(_.toString).getOrElse("")

关于Scala将Option [T]转换为String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32634098/

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