Near-complete Method

Classic programmed-learning exercises, refreshed for modern Java and presented in the current MrStyner.com portfolio style.

Modern Java noteThis archive has been refreshed for Java 25 LTS. Core language concepts remain useful, while outdated setup instructions and browser-era Java are labeled or replaced. Java 26 is the current feature release; Java 25 is used here as the stable teaching baseline.
go to previous page   go to home page   go to next page

Answer:

The nearly completed method is below.

Near-complete Method

class Tester
{
  public boolean test( String trial )
  {
    String lower = trial.toLowerCase();

    StringBuffer azBuffer  = new StringBuffer();

    for ( int j=0; j < lower.length(); j++ )
    {
       char c = lower.charAt(j);
       if ( c >= 'a' && c <= 'z' )
         azBuffer.append( c );
    }

    String forward  = azBuffer.toString();
    String backward = azBuffer.reverse() . toString() ;
    
    if (  . equals(  ) )
      return true;
    else
      return false;

  }
}

public class PalindromeTester
{
  . . . . .
}

It is necessary to convert the two versions of azBuffer to a String because the StringBuffer class does not have an appropriate equals() method. However, we can use the method from String.

QUESTION 12:

Complete the method using the equals() method.