【发布时间】:2011-05-03 08:17:29
【问题描述】:
举起手来,我正在为 OU 的一个 M257 编程问题而苦苦挣扎,它是形成性的,没有任何标记,几天后就会到期。我无法从测试类调用构造函数并且已经挣扎了几个小时无济于事,该类在 Netbeans 6.91 中编译得很好,但构造函数不会创建对象。我做错了什么?
我对第一个问题没有任何问题,但我完全被困在这里,显然遗漏了一些重要的东西 - 请指导。这个想法是将文件的名称传递给类,一旦我知道文件已打开并且扫描仪已初始化,我就可以完成剩下的工作。
===============
/**
* 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 并将给自己整整两个月的时间,更明智的人认为!
【问题讨论】:
-
"问题是 NetBeans 太擅长建议你需要什么,却没有告诉你它为什么要这么做出去。” +1
标签: java inheritance constructor