class Pet { // a field called name that is of type String String name; public Pet(String petsName) { // assignment statement so that the name field // will be initialized with the value of the // constructor’s parameter name = petsName; } }