不兼容的数据类型错误

时间:2014-05-06 19:43:16

标签: java arrays string

我是"尝试"创建一个方法来获取我的字符串数组并将其与我从数据文件导入的答案键进行比较。每次我编译时都会遇到这种不兼容的数据类型错误,并且说:

发现:java.lang.String 必需:java.lang.String [] []

我不这样做吗? 我没有在这里和谷歌上寻找解决方案。它们似乎与我想要完成的事情无关。

import java.util.*;  // Allows for the input of a scanner method.
import java.io.*;    // Allows for the inputting and outputting of a data file.
import java.lang.*;  // Allows for the use of String Methods.
//////////////////////////////////////////////////////////////////////////////////////

public class TESTY
{
static Scanner testanswers;
static PrintWriter testresults;

public static void main(String[] args) throws IOException
{
    testanswers = new Scanner(new FileReader("TestInput.dat"));
    testresults = new PrintWriter("TestOutput.dat");

    String StudentID;
    String answers;
    // Reads first two lines first to know how many records there are.
    String answerKey = testanswers.nextLine();
    int count = Integer.parseInt(testanswers.nextLine());

    // Allocate the array for the size needed.
    String[][] answerArray = new String[count][];

    for (int i = 0; i < count; i++)
    {
        String line = testanswers.nextLine();
        answerArray[i] = line.split(" ", 2);
    }

    for(int row = 0; row < answerArray.length; row++)
    {
        for(int col = 0; col < answerArray[row].length; col++)
        {
            System.out.print(answerArray[row][col] + " ");
        }
        System.out.println();
    }   
    gradeData(answerArray, answerKey);



    testanswers.close();
    testresults.close();

}
///////////////////////////////////////////////////////////
//Method: gradeData
//Description: This method will grade testanswers showing 
//what was missed, skipped, letter grade, and percentage.
///////////////////////////////////////////////////////////
public static double gradeData(String[][] answerArray, String answerKey)
{   

    String key;
    double Points = 0;
    StringBuilder[] wrongAnswers = new StringBuilder[answerArray.length];

    for(int rowIndex = 0; rowIndex < answerArray.length; rowIndex++)
    {
        String studAnswers[][] = answerArray[rowIndex][1].replace(" ", "S");
        for(int charIndex = 0; charIndex < studAnswers[rowIndex][1].length; charIndex++)
        {
            if(studAnswers[rowIndex][1].charAt(charIndex).equals(key.charAt(charIndex)))
            {
                Points += 2;
            }
            if(!studAnswers[rowIndex][1].charAt(charIndex).equals('S'))
            {
                Points --;
            }
            else
            {
                wrongAnswers.setcharAt(charIndex, 'X');
            }
        }
    }
    return Points;


}

为了更好地了解我在做什么,这是我的.dat文件:

TFFTFFTTTTFFTFTFTFTT
5
ABC54301 TFTFTFTT TFTFTFFTTFT
SJU12874 TTTFFTFFFTFTFFTTFTTF
KSPWFG47 FT  FT  FTFTFFTTFFTF
PAR38501 FFFFFFFFFFFFFFFFFFFF
MCY19507 TTTT TTTT TTTT TT TT

2 个答案:

答案 0 :(得分:1)

此声明,例如,

String studAnswers[][] = answerArray[rowIndex][1].replace(" ", "S");

给出编译错误

Type mismatch: cannot convert from String to String[][]

,因为

answerArray[rowIndex][1].replace(" ", "S");返回String

  • answerArray是一个2D String数组。
  • answerArray[rowIndex][1]得到 数组中的一个元素是一个字符串
  • answerArray[rowIndex][1].replace...替换了该字符中的字符 String与另一个角色,最后为另一个String(带有 被替换的角色)

您正尝试将其分配到String数组。

此外,您无法在基元(equalsint ...)上使用char。您需要使用==进行比较。

答案 1 :(得分:0)

String studAnswers[][] = answerArray[rowIndex][1].replace(" ", "S");

这里,studAnswers被声明为字符串数组的数组,并用String初始化它。实际上,answerArray是一个字符串数组的数组,因此answerArray[rowIndex][1]是一个字符串。然后用S替换此String中的每个空格,返回另一个String。

这没有用。