如何创建只能设置一次但在Java中不是最终变量的变量

如何创建只能设置一次但在Java中不是最终变量的变量,第1张

如何创建只能设置一次但在Java中不是最终变量的变量

让我建议您一点更优雅的决定。第一个变体(不引发异常):

public class Example {    private Long id;    // Constructors and other variables and methods deleted for clarity    public long getId() {        return id;    }    public void setId(long id) {        this.id = this.id == null ? id : this.id;    }}

第二种变体(引发异常):

     public void setId(long id)  {         this.id = this.id == null ? id : throw_();     }     public int throw_() {         throw new RuntimeException("id is already set");     }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5489927.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存