问答详情
源自:2-11 Java常量的应用

为什么不能使用char

public class HelloWorld{

    public static void main(String[] args) {

final char WL='女';

final char ML='男';

System.out.println(w);

System.out.println(M);

}

}

为什么错误


提问者:慕设计4527768 2017-11-12 22:40

个回答

  • qq_百草_0
    2017-11-12 22:52:03

    可以用char的,只是输出的变量名没写对;应该是WL和ML。


  • 黑白幻想
    2017-11-12 22:49:57

    public class HelloWorld{

        public static void main(String[] args) {

            final char WL='女';

            final char ML='男';

            System.out.println(WL);

            System.out.println(ML);

        }

    }