Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

multiple constructors for final fields in java

I have some final fields in the class like

class A {

 private final boolean a;
 private final boolean b;

 public A(boolean a){
     this.a = a;
 }

 public A(boolean a, boolean b){
     this.a = a;
     this.b = b;
 }
}

But this gives an error that final field 'b' might not have been initialized. So any help would be appreciated on how to handle final attributes initialization in case of multiple constructors. It works fine if I have only the second constructor.

like image 957
Abhijeet Avatar asked Dec 07 '22 18:12

Abhijeet


2 Answers

You can initialize b to default false. All the final variable should be initialized in constructors.

 public A(boolean a){
     this.a = a;
     this.b = false;
 }

Or should call other constructors which would initialize them.

 public A(boolean a){
     this(a, false);
 }

 public A(boolean a, boolean b){
     this.a = a;
     this.b = b;
 }
like image 75
Jerin Joseph Avatar answered Dec 31 '22 18:12

Jerin Joseph


the problem is that first constructor does not initialize b, so java cannot assume any value, standard practice is to write code like this:

 public A(boolean a){
     this(a, DEFAULT VALUE FOR B);
 }

 public A(boolean a, boolean b){
     this.a = a;
     this.b = b;
 }

this way you have only 1 real constructor, all other constructors are just short-cuts for it

like image 24
Iłya Bursov Avatar answered Dec 31 '22 16:12

Iłya Bursov