toLowerCase(char) method?

前端 未结 8 1514
醉酒成梦
醉酒成梦 2021-02-14 17:19

Apparently there is a method that takes a char and returns a char: http://download.oracle.com/javase/6/docs/api/java/lang/Character.html#toLowerCase(char)

But I can\'t s

8条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-14 17:46

    toLowerCase() is a method of java.lang.String; you use it like so:

    
    jcomeau@intrepid:/tmp$ cat test.java; java test
    public class test {
     public static void main(String[] args) {
      System.out.println("C".toLowerCase());
     }
    }
    c
    

提交回复
热议问题