Originally posted by Bear Bibeault:
[QB]...This is the second topic you've posted with the title "Constructor". How are we to tell them apart?
Indeed. Note that you can edit your original post by clicking on the pen/pencil icon.
Within a constructor, the keyword "this" (followed by a parameter list) is used to call overloaded constructors within the same class. If you do this, it
must be the first line of the constructor.
For example, the following constructor takes an int, then calls an overloaded version that takes an int and a
String.