我对第一个问题没有任何问题,但我完全被困在这里,显然遗漏了一些重要问题 - 请指导。我的想法是将文件的名称传递给类,一旦我知道文件打开并初始化扫描程序,我就可以完成剩下的工作。
===============
/**
* Title: WordCounter class
* Description: M257 TMA01, Q2 - word counter class as described in instructions
* @author Andrew Broxholme
*/
package tma01q2;
import java.io.*;
import java.util.*;
public class WordCounter
{
//Class instance variables
public static int totalWords;
public static int totalEven;
public static int totalOdd;
public static int totalLetters;
private Scanner fileScanner;
String sourceFile;
String line; //The lines of the text file
//Single argument constructor, accepts source filename
public boolean WordCounter(String fileToRead)
{
sourceFile = fileToRead;
try
{
openRead();
while (fileScanner.hasNext())
{
// Process each line of the text file
line = fileScanner.nextLine();
System.out.println(line);
// countWords();
}
return true;
}
catch (Exception exp)
{
return false;
}
finally
{
fileScanner.close();
}
}
//openRead, opens the file and processes each line of the file until finished
private boolean openRead() throws IOException
{
try
{
fileScanner = new Scanner(sourceFile);
return true;
}
catch (Exception exp)
{
return false;
}
}
// More methods to be added
}
/*
* TestWordCounter.
* Description: Tests the WordCounter class as per TMA01q2 instructions
* @author Andrew Broxholme
* V1.0 30th April 2011
*/
package tma01q2;
public class TestWordCounter
{
//Create a WordCounter to process the specified text file.
public static void main(String[] args)
{
String testFile = "haiku.txt";
WordCounter fileStats = new WordCounter(testFile);
}
}
当我尝试复习时,这就是它传回的内容。
Compiling 1 source file to C:\M257\TMA01\TMA01Q2\build\classes
C:\M257\TMA01\TMA01Q2\src\tma01q2\TestWordCounter.java:18: cannot find symbol
symbol : constructor WordCounter(java.lang.String)
location: class tma01q2.WordCounter
WordCounter fileStats = new WordCounter(testFile);
1 error
C:\M257\TMA01\TMA01Q2\nbproject\build-impl.xml:246: The following error occurred while executing this line:
C:\M257\TMA01\TMA01Q2\nbproject\build-impl.xml:113: Compile failed; see the compiler error output for details.
我没有放弃这一点,如果我先找到答案,我会更新问题。
2011年5月8日:答案很有帮助但最终虽然最后我放弃了这个问题,因为我得到了进一步的知识,我只是不知道子类如何从超类继承而需要尝试一些更简单(对我来说更有意义)的例子来加深我的理解。但问题是,NetBeans过于善于建议你需要什么,而没有告诉你为什么它正在做它正在做的事情,如果你是一个经验丰富的java开发人员,那很好,但如果你的开始不太好。
我已经为TMA02开始了(即阅读简报),并且给自己整整两个月,更加明智的想法!
答案 0 :(得分:8)
这不是构造函数。删除boolean
作为返回类型 - 构造函数没有返回类型。所以:
public WordCounter(String fileToRead)
而不是
public boolean WordCounter(String fileToRead)
这就是错误告诉你的 - 编译器找不到具有该名称的构造函数。
请参阅:constructors
答案 1 :(得分:1)
构造函数的签名是错误的。
public WordCounter(String fileToRead)
{
sourceFile = fileToRead;
try
{
openRead();
while (fileScanner.hasNext())
{
// Process each line of the text file
line = fileScanner.nextLine();
System.out.println(line);
// countWords();
}
return true;
}
catch (Exception exp)
{
return false;
}
finally
{
fileScanner.close();
}
}
使用像这样的构造函数。将构造函数的签名替换为
public WordCounter(String fileToRead)