字符串无法转换为char,如何修复它?

时间:2017-04-07 06:30:50

标签: java types compiler-errors incompatibletypeerror

它表示"不兼容的类型:String无法转换为char" 怎么解决? 这是一个例子。 code as image

1 个答案:

答案 0 :(得分:1)

这是你的解决方案:

public class NewMain {
    public static void main(String args[]) throws ParseException {
        Scanner s = new Scanner(System.in);
        char yes;
        do {
            System.out.println("Hi");
            yes = s.next().charAt(0);
        } while (yes == 'Y'); // if u enter 'Y' the it will continue

    }
}

要退出,请输入'Y'

以外的任何内容