JAVA Problem We know that thisValue Value Will set the ins
JAVA Problem :
We know that:
this.Value = Value;
Will set the instance variable \'Value\' to whatever \'Value\' is.
What does this code do:
this(2,3);
Solution
this(2,3)
it calls a constructor of a the same class.
Definition of the constructor will accept two integers
of value 2 and 3.
