gpt4 book ai didi

java - Java 记录是否支持 "with"语法?

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

Java 14 带来了记录,这是许多函数式语言中的一个很好的补充:
java :

public record Vehicle(String brand, String licensePlate) {}
毫升:
type Vehicle = 
{
Brand : string
LicensePlate : string
}
在 ML 语言中,可以通过创建一个更改了一些值的副本来“更新”记录:
let u = 
{
Brand = "Subaru"
LicensePlate = "ABC-DEFG"
}

let v =
{
u with
LicensePlate = "LMN-OPQR"
}

// Same as:
let v =
{
Brand = u.Brand
LicensePlate = "LMN-OPQR"
}
这在 Java 14 中可能吗?

最佳答案

不幸的是,Java 不包含此功能。不过,您可以创建一个使用不同车牌值的实用方法:

public static Vehicle withLicensePlate(Vehicle a, String newLicensePlate) {
return new Vehicle(a.brand, newLicensePlate);
}
像这样使用:
Vehicle a = new Vehicle("Subaru", "ABC-DEFG");
Vehicle b = Vehicle.withLicensePlate(a, "LMN-OPQR");
这将为您提供与您尝试使用“with”标签类似的结果。您可以将其用作更新记录的一种方式。

关于java - Java 记录是否支持 "with"语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66048957/

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