在java中使类不可变

前端之家收集整理的这篇文章主要介绍了在java中使类不可变前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为了使类不可变,我能做的是:

1)让课程最终
2)不提供制定者
3)将所有变量标记为final

但是如果我的类有另一个类的另一个对象,那么somone可以改变该对象的值

class MyClass{
 final int a;
 final OtherClass other 

 MyClass(int a,OtherClass other){
  this.a = a;
  this.other = other;
 }

 int getA(){
   return a;
 }

 OtherClass getOther(){
   return other;
 }

 public static void main(String ags[]){
  MyClass m = new Myclass(1,new OtherClass);
  Other o = m.getOther();
  o.setSomething(xyz) ; //This is the problem,How to prevent this?

}
}

解决方法

A)使OtherClass也是不可变的

要么

B)不允许直接访问OtherClass对象,而只提供getter作为代理.

编辑添加:您可以制作OtherClass的深层副本并返回副本而不是原始副本,但这通常不是您在Java中所期望的行为类型.

原文链接:https://www.f2er.com/java/129499.html

猜你在找的Java相关文章