Page 333 - Introduction to Programming with Java: A Problem Solving Approach
P. 333

                8.2 Coding-Style Conventions 299
 }
// end class Student
// This method verifies that first starts with an uppercase
// letter and contains lowercase letters thereafter.
public void setFirst(String first)
{
}
// end setFirst
// [A-Z][a-z]* is a regular expression. See API Pattern class.
if (first.matches("[A-Z][a-z]*"))
{
}
else
{
}
public
{
}
// end setLast
{
}
else
{
}
this.first = first;
System.out.println(first + " is an invalid name.\n" +
"Names must start with an uppercase letter and have" +
" lowercase letters thereafter.");
//********************************************************************
// This method verifies that last starts with an uppercase
// letter and contains lowercase letters thereafter.
void seAtpLaastg(SotrinPg DlaFst)Enhancer
// [A-Z][a-z]* is a regular expression. See API Pattern class.
if (last.matches("[A-Z][a-z]*"))
this.last = last;
System.out.println(last + " is an invalid name.\n" +
"Names must start with an uppercase letter and have" +
" lowercase letters thereafter.");
//*******************************************************************
// Print the student's first and last names.
public void printFullName()
{
System.out.println(this.first + " " + this.last);
} // end printFullName
Figure 8.2b
Student class—part B




















































   331   332   333   334   335