Just need come clarification
On page 16 of this Ivor Horton Beginning Java book there is an example of a class called CowboyHat. In the constructor, as a value passed to this method there is (string person, int the size). Also, as part of the code in this method he sets the size of the hat with Size = the Size when the original declaration of the member variable is not Size, but size, no caps. Also the size is passed, and the Size is used in the code. Two questions; am I correct in that there should be no spaces in the size (should be thesize), and also, am I correct that Size and the size is not the same as size and the Size, considering caps and non caps?
|