gpt4 book ai didi

Java transient 运行时改进?

转载 作者:行者123 更新时间:2023-11-30 02:04:11 25 4
gpt4 key购买 nike

在我的项目中没有保存或加载。每次登录都会创建一个新对象。

因此从技术上讲,每个字段都表现得好像它是 transient 的。但如果我也将它们命名为 transient ,即

private final Car car = new Car();

(即使每次登录都会创建保存此字段的对象)

更改为

private transient final Car car = new Car();

这会对我的项目在内存使用或速度方面产生积极的影响吗?

最佳答案

将变量声明为 transient 变量不会对内存占用产生影响。 transient 意味着当您序列化对象时,字段不会成为持久状态的一部分,在反序列化过程中,这些变量将被初始化为其默认值。

Transient Field Description from Java Docs

关于Java transient 运行时改进?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51838548/

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