What is the difference between char and Character in Java?

前端 未结 4 858
失恋的感觉
失恋的感觉 2021-02-01 07:31

I need to know what is the difference between char and Character in Java because when I was making a java program, the char worked while the Character didn\'t work.

4条回答
  •  南方客
    南方客 (楼主)
    2021-02-01 08:10

    char is a primitive type and Character is a class that acts as a wrapper for char.

    The point of the Character class is so you can apply a range of methods to your char if needed.

    More information here http://docs.oracle.com/javase/tutorial/java/data/characters.html

提交回复
热议问题