gpt4 book ai didi

java - 字符到字符串的帮助

转载 作者:行者123 更新时间:2023-12-02 06:00:20 24 4
gpt4 key购买 nike

我收到的错误位于第 35 行,它显示“Project1 类中的方法英语无法应用于给定类型。我不明白,任何帮助将不胜感激。我认为我需要切换变量类型但我不完全知道怎么做。顺便说一句,我是 java 新手,正在尝试尽快学习!

public class Project1
{
public static void main( String [] args )
{
System.out.println();
choice();

}
public static void choice()
{
int user_choice = 0;
user_choice = Input.getInt("Enter 1 if you want to change English to Morse code, and enter 2 to change Morse code to English");
if(user_choice == 1)
{
String output = new String();
String inital = new String();
inital = english_to_morse();

for( int k = 0; k < inital.length(); k++)
{
output += morse(inital.charAt( k ));
}

System.out.print(output);

}
if(user_choice == 2)
{
String output2 = new String();
String inital2 = new String();
inital2 = english_to_morse();

for( int k = 0; k < inital2.length(); k++)
{
output2 += english(inital2.charAt( k ));///the error is here
}

System.out.print(output2);
}
}

public static String english_to_morse()
{
String user_input = new String();

user_input = Input.getString("Enter a phrase and I'll convert it to Morse Code");

return user_input.toLowerCase();
}

public static String morse_to_english()
{
String user_input = new String();

user_input = Input.getString("Enter a phrase in Morse Code and I'll convert it to English");

return user_input.toLowerCase();
}

public static String morse(char letter)
{
String output = new String();
char[] alphabet_numbers = {'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', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ' ' };
String morse_code[] = { ".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..", "-----", ".----", "..---", "...--", "....-", ".....", "-....", "--...", "---..", "----.", "|" };

for( int j = 0; j < alphabet_numbers.length; j++ )
{
if (alphabet_numbers[j]==letter)
{
output = morse_code[j];
}
}
return output + " ";
}
public static String english(String letter)
{
String output = new String();
String alphabet_numbers[] = {"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", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", " " };
String morse_code[] = { ".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..", "-----", ".----", "..---", "...--", "....-", ".....", "-....", "--...", "---..", "----.", "|" };

for( int j = 0; j < morse_code.length; j++ )
{
if (morse_code[j]==letter)
{
output = alphabet_numbers[j];
}
}
return output + " ";
}

}

最佳答案

您不能直接将 char 转换为 String。为此,请使用 String.valueOf()

在这一行中,您的方法 english() 接受 String 作为参数,但您将 char 传递给它。

output2 += english(inital2.charAt( k ));

但应该是:

output2 += english(String.valueOf(inital2.charAt( k )));

关于java - 字符到字符串的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22724585/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com