我正在尝试编译以下代码,但我不断收到错误消息。

Cannot find symbol method toCharacterArray(string)
Cannot find symbol method writeSuccess(int,char[],char[])

public class ControlFlow {

    char[] alphabet = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};

    public void start(){
        char[] sentenceToTest = toCharacterArray("the quick red fox jumps over the lazy brown dog");
        char[] missingLetters = new char[26];

        int numOfMissingLetters = 0;

        for(int i=0; i < alphabet.length; i++){
            char letterToFind = alphabet[i];

            if(hasLetter(letterToFind, sentenceToTest)){
                missingLetters[numOfMissingLetters] = letterToFind;
                numOfMissingLetters++;
            }
        }

        writeSuccess(numOfMissingLetters,missingLetters,sentenceToTest);
    }

    public boolean hasLetter(char aLetter, char[] aSentence) {
        boolean found = false;
        int position = 0;
        while(!found){
            if(aLetter == aSentence[position]){
                found = true;
            }else if(position == aSentence.length - 1){
                break;
            }else{
                position++;
            }
        }
        return found;
    }
}

最佳答案

char[] sentenceToTest = toCharacterArray("the quick red fox jumps over the lazy brown dog");


应该:

char[] sentenceToTest = "the quick red fox jumps over the lazy brown dog".toCharacterArray();


.toCharacterArray()是String对象的方法。因此,您执行str.toCharacterArray(),而不是toCharacterArray(str)

对于第二个问题,要显示给我们的代码中没有实现writeSuccess()方法。

08-18 18:39