I am trying to create a instance of the object Iset. When the person makes the object they have to give an int which will be the size of a boolean array that will store a set of
You're creating a new int variable inside the constructor. Instead, you just need to do this.size = a; in the constructor.
int
this.size = a;