PPT Slide
Motivation:We need a means of initializing the attributes of a new object (or
“instance”) when it is created.
public Box (int iNewLength, int
iNewWidth, int iNewHeight) {
Means:“Constructor methods” that are invoked automatically upon
“instantiation” (creation) of new object.