私はプログラミングにかなり慣れていないので、少し助けが必要です。私は StringBuffer クラスの使い方を学んでいて、簡単なコードを書きました。ただし、プログラムを実行しようとすると、「シンボルが見つかりません」というエラーメッセージが表示され続けます。どんな提案も素晴らしいでしょう!ありがとう!
public class StringBuffer{
public static void main(String[] args)
{
StringBuffer sbuff = new StringBuffer();
//one attempt to append - error
sbuff.append("Jenna");
//second attempt to append - error
String phrase = new String("Jenna");
sbuff.append(phrase);
//attempts to call upon other methods - errors
System.out.println("Your name backwards is: " + sbuff.reverse());
System.out.println("The length of your name is: " +sbuff.length());
}
}
正確なエラーは次のようになります。
cannot find symbol
symbol: method append(java.lang.String)
location: variable sbuff of type StringBuffer
reverse
との同様のエラーlength
。