Page 1 of 1

[HD Pg 272, Sec. 8.5.2 - constructor-of-a-class]

Posted: Thu Jan 03, 2019 4:40 pm
by Username987654
this.someValue = x; // initializing x
should be
this.someValue = x; // assigning instance variable someValue's value to the value of/contained in x
?

Re: [HD Pg 272, Sec. 8.5.2 - constructor-of-a-class]

Posted: Sat Jan 05, 2019 12:07 am
by admin
Correct. Added to errata.
thank you for your feedback!