gpt4 book ai didi

scala - 是否有可能以及如何设置只能设置一次的 var?

转载 作者:行者123 更新时间:2023-12-03 15:47:32 25 4
gpt4 key购买 nike

是否有一种本地方法可以确保变量只能设置一次?

目前,我正在使用这种方法

class SetOnceVariable[T]
{
private var value : T = _

private var initialized = false

def apply(_v : T = _) : T =
{
if (value != null && !initialized) {
value = _v
initialized = true
}
value
}
}

class ClientInfo
{
val userIP : SetOnceVariable[String] = new SetOnceVariable[String]
}

最佳答案

没有这样的语言结构,但我想我至少可以清理你的代码。

class SetOnce[A](var toOption: Option[A] = None) {
def set(a: A): Unit = if (toOption.isEmpty) toOption = Some(a)
def get: A = toOption.get
}

用法:
val x = new SetOnce[Int]
x.toOption // None

x.set(1)
x.get // 1

x.set(2)
x.get // 1

我省略了 null考虑,因为惯用的 Scala 代码往往不使用或不考虑 null在 Java 兼容性之外。我们大多假装它不存在。

关于scala - 是否有可能以及如何设置只能设置一次的 var?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27586633/

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