0

私は学校の課題に取り組んでいます。プログラムはユーザーにファイル名を尋ね、そのファイル内の文字数、単語数、および行数を数えます。次に、次のファイルの名前を尋ねます。ユーザーが存在しないファイルを入力すると、プログラムは、処理されたすべてのファイルと存在するすべての文字、単語、および行の合計数を出力します。

だから私はプログラムを書きましたが、いくつかのエラーが発生しています。これがカウンタープログラムです。オンラインでエラーが発生しています

private FileCounter counter; 

private boolean done;

エラーは次のように述べています: The FieldCounter.done is never read local . 前の行も同様です。この警告が表示される理由がわかりません。

プログラムの残りの部分:

    import java.util.Scanner;
    import java.io.FileReader;
    import java.io.FileNotFoundException;
    /**
    * A class to count the number of characters, words, and lines in files.
    */

    public class FileCounter
    {
       /**
          Constructs a FileCounter object.
       */
       public FileCounter()
       {
        words = 0;
        lines = 0;
        chars = 0;
        input = "";

     }

       /**
          Processes an input source and adds its character, word, and line
          counts to this counter.
          @param in the scanner to process
       */
       public void read(Scanner in) throws FileNotFoundException
       {

           boolean done = false;
           while (!done)
           {
                 while(in.hasNextLine())
                 {
                   lines++;
                   words++;
                   int j = 0;
                   file = in.nextLine();
                   input = input + file;
                   for(int i = 1; i < file.length(); i++)
                   {
                   if(file.substring(j, i).equals(" "))
                   {
                     words++;
                   }


                   j++;

                }
                  }
                   char[] array = input.toCharArray();
                   int num = array.length;
                   chars += num;
                   if(in.hasNextLine() == false)
                   done = true;
                }



      }
      /**
          Gets the number of words in this counter.
          @return the number of words
       */
       public int getWordCount()
       {
         return words;
      }

       /**
          Gets the number of lines in this counter.
          @return the number of lines
       */
       public int getLineCount()
       {    
          return lines;
       }    

       /**
          Gets the number of characters in this counter.
          @return the number of characters
       */
       public int getCharacterCount()
       {

           return chars;
       }

       private String input;
       private int words;
       private FileCounter counter;
       private int lines;
       private boolean done;
       private int chars;
       private String file;

    }


import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.Scanner;

/**
   This class prints a report on the contents of a number of files.
*/
public class FileAnalyzer
{
   public static void main(String[] args) 
   {  
      Scanner in = new Scanner(System.in);
      FileCounter counter = new FileCounter();
      boolean more = true;
      while (more)
      {
         System.out.print("Please enter the next filename, or <Enter> to quit: ");
         String filename = in.nextLine();
         if (filename.length() > 0)
         {
             try
             {
                 FileReader fileRead = new FileReader(filename);
                 Scanner fileInput = new Scanner(fileRead);
                 counter.read(fileInput);
             }
             catch (FileNotFoundException fnfe)
             {
                 System.out.println("File " + filename + " was not found: " + fnfe);
             }
         }
         else
         {
           more = false;
         }
      }
      System.out.println("Characters: " + counter.getCharacterCount());
      System.out.println("Words: " + counter.getWordCount());
      System.out.println("Lines: " + counter.getLineCount());
   }
}
4

3 に答える 3

1

表示される警告は、変数が読み取られないため、本質的に役に立たないことを意味します。これらの行とそれらへのすべての参照を削除しても、理論上はプログラムは引き続き実行され、変更は発生しません。

private boolean done;これは決して使用されません。 private FileCounter counter;これもそうです。

于 2013-09-01T16:00:06.927 に答える
1

これはエラーではなく、警告です。プログラムは正常にコンパイルされますが、奇妙な点が見つかりました。

この場合、privateブール属性を定義していますが、それを何にも使用していません (メソッドでdone使用する はreadメソッドでローカルに定義されているため、別の変数であることに注意してください)。

行を削除するだけprivate boolean doneでOKです。

についても同様counterです。

于 2013-09-01T16:01:32.187 に答える