【问题标题】:What am I doing wrong - can't instantiate object from Main (Custom class)我在做什么错 - 无法从 Main 实例化对象(自定义类)
【发布时间】: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


【解决方案1】:

这不是构造函数。删除 boolean 作为返回类型 - 构造函数没有返回类型。所以:

public WordCounter(String fileToRead)

而不是

public boolean WordCounter(String fileToRead)

这就是错误告诉你的 - 编译器找不到具有该名称的构造函数。

见:constructors

【讨论】:

  • 好的,谢谢,这很有帮助。说明要求我在文件打开时返回 true/false,然后在处理完成时返回 true/false,我将使用实例变量来执行此操作。
【解决方案2】:

构造函数的签名错误。

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)

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-09-07
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多